From: Adam Dickmeiss Date: Thu, 19 Nov 2009 11:22:14 +0000 (+0100) Subject: Using cout instead of printf X-Git-Tag: v1.0.20~4 X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=commitdiff_plain;h=ce1ade811852d02013d8753398d38407ab602379;p=metaproxy-moved-to-github.git Using cout instead of printf --- diff --git a/src/tstdl.cpp b/src/tstdl.cpp index 1b4779d..a414771 100644 --- a/src/tstdl.cpp +++ b/src/tstdl.cpp @@ -42,7 +42,7 @@ int main(int argc, char **argv) exit(1); } void *sym = dlsym(mod, argv[2]); - printf("sym=%p\n", sym); + cout << "sym=" << sym << endl; dlclose(mod); exit(0); #else