Commit c3143b8b authored by Ryan C. Gordon's avatar Ryan C. Gordon

Man, who let this moron near printf()?! :)

--HG--
branch : SDL-1.2
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402224
parent 92643bac
......@@ -19,8 +19,9 @@ int main(int argc, char *argv[])
fntype fn = NULL;
if (argc != 3) {
fprintf(stderr, "USAGE: %s <library> <functionname>\n");
fprintf(stderr, " %s --hello <library with puts()>\n");
const char *app = argv[0];
fprintf(stderr, "USAGE: %s <library> <functionname>\n", app);
fprintf(stderr, " %s --hello <lib with puts()>\n", app);
return 1;
}
......@@ -51,7 +52,7 @@ int main(int argc, char *argv[])
symname, SDL_GetError());
retval = 4;
} else {
printf("Found %s in %s at %p\n", symname, libname);
printf("Found %s in %s at %p\n", symname, libname, fn);
if (hello) {
printf("Calling function...\n");
fflush(stdout);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment