Skip to content

Commit

Permalink
fputs does the same job as fprintf except that the last one is design…
Browse files Browse the repository at this point in the history
…ed for formatted strings
  • Loading branch information
Spacebrain committed Apr 23, 2015
1 parent c4a7c11 commit 025816a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/xrD3D9-Null/xrD3D9-Null_OutProc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ void LogOut_File(const char *pszFormat, ...)
va_start(va, pszFormat);
vsprintf(s, pszFormat, va);
va_end(va);
fprintf(stderr,s);

fputs(s,stderr);

FILE *fp;
fp = fopen("d3d9-null.log","a+t");
Expand Down

0 comments on commit 025816a

Please sign in to comment.