mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Remove extra args.
svn path=/trunk/; revision=39156
This commit is contained in:
parent
65254afcef
commit
548f7458c7
1 changed files with 2 additions and 2 deletions
|
@ -174,7 +174,7 @@ void write_h_file(const char *fname)
|
|||
}
|
||||
cptr = ctime(&now);
|
||||
killnl(cptr, 0);
|
||||
fprintf(fp, str_header, input_name ? input_name : "<stdin>", cmdline, cptr);
|
||||
fprintf(fp, str_header, input_name ? input_name : "<stdin>", cmdline/*, cptr*/);
|
||||
fprintf(fp, "#ifndef __WMCGENERATED_%08lx_H\n", (long)now);
|
||||
fprintf(fp, "#define __WMCGENERATED_%08lx_H\n", (long)now);
|
||||
fprintf(fp, "\n");
|
||||
|
@ -499,7 +499,7 @@ void write_rc_file(const char *fname)
|
|||
}
|
||||
cptr = ctime(&now);
|
||||
killnl(cptr, 0);
|
||||
fprintf(fp, str_header, input_name ? input_name : "<stdin>", cmdline, cptr);
|
||||
fprintf(fp, str_header, input_name ? input_name : "<stdin>", cmdline/*, cptr*/);
|
||||
|
||||
if(rcinline)
|
||||
write_rcinline(fp);
|
||||
|
|
Loading…
Reference in a new issue