commit | ee285b7ac877d36aee08d34e9f10ecde3018befa | [log] [tgz] |
---|---|---|
author | Francois Gouget <fgouget@free.fr> | Fri May 11 20:03:40 2001 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri May 11 20:03:40 2001 +0000 |
tree | dedb625646e716006e79c1a6c77077ff5f50bdf6 | |
parent | f16d04925c89afccb1738b22a01673d3277806e5 [diff] [blame] |
Remove unnecessary single quoting of debugstr_xxx strings.
diff --git a/files/drive.c b/files/drive.c index 9b0d169..8e790e4 100644 --- a/files/drive.c +++ b/files/drive.c
@@ -1206,7 +1206,7 @@ { if ((root[1]) && (root[1] != ':')) { - WARN("invalid root '%s'\n", debugstr_a(root)); + WARN("invalid root %s\n", debugstr_a(root)); return DRIVE_NO_ROOT_DIR; } drive = toupper(root[0]) - 'A';