From 1ab929ad128a4c34af8007701cc85ca6b49dd7a1 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 24 Jan 2007 21:43:58 -0800 Subject: [PATCH] Win32 FAT installer: fix type typo (which happened to cancel itself out...) I had written "char *c = ..." instead of "char c = ..."; as it turned out, the resulting (invalid) type conversions all worked themselves out and it didn't matter, except for compiler warnings... --- win32/syslinux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/syslinux.c b/win32/syslinux.c index f5d6eae..613b1fc 100644 --- a/win32/syslinux.c +++ b/win32/syslinux.c @@ -463,7 +463,7 @@ int main(int argc, char *argv[]) new_ldlinux_name[2] = '\\'; for (sd = subdir; *sd; sd++) { - char *c = *sd; + char c = *sd; if (c == '/' || c == '\\') { if (slash) -- 2.7.4