From b0175fa5a79da7a868a297dd39932fa8e62b6e0d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 30 May 2004 15:24:57 +0000 Subject: [PATCH] Changed some C++ comments to old C form. --- mojopatch.c | 2 +- platform_unix.c | 4 ++-- ui_carbon.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mojopatch.c b/mojopatch.c index b814845..035f4fc 100644 --- a/mojopatch.c +++ b/mojopatch.c @@ -2204,7 +2204,7 @@ static int parse_cmdline(int argc, char **argv) { ignorecount++; ignorelist = (char **) realloc(ignorelist, sizeof (char *) * ignorecount); - // !!! FIXME: Check retval. + /* !!! FIXME: Check retval. */ ignorelist[ignorecount-1] = argv[++i]; } /* else if */ else diff --git a/platform_unix.c b/platform_unix.c index 93c7b08..40e1259 100644 --- a/platform_unix.c +++ b/platform_unix.c @@ -297,7 +297,7 @@ static int parse_info_dot_plist(const char *ident, const char *version, const char *newversion) { - const char *fname = "Contents/Info.plist"; // already chdir'd for this. + const char *fname = "Contents/Info.plist"; /* already chdir'd for this. */ char *mem = NULL; char *ptr; long fsize; @@ -363,7 +363,7 @@ static int parse_info_dot_plist(const char *ident, int update_version(const char *ver) { - const char *fname = "Contents/Info.plist"; // already chdir'd for this. + const char *fname = "Contents/Info.plist"; /* already chdir'd for this. */ char *mem = NULL; char *ptr; long fsize; diff --git a/ui_carbon.c b/ui_carbon.c index e6af6eb..c535e77 100644 --- a/ui_carbon.c +++ b/ui_carbon.c @@ -94,7 +94,7 @@ void ui_pump(void) void ui_add_to_log(const char *str, int debugging) { - // !!! FIXME + /* !!! FIXME */ printf("MojoPatch%s: %s\n", debugging ? " [debug]" : "", str); } /* ui_add_to_log */