Skip to content

Commit

Permalink
Changed some C++ comments to old C form.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed May 30, 2004
1 parent 9e212eb commit b0175fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mojopatch.c
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions platform_unix.c
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion ui_carbon.c
Expand Up @@ -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 */

Expand Down

0 comments on commit b0175fa

Please sign in to comment.