From ce1ade811852d02013d8753398d38407ab602379 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 19 Nov 2009 12:22:14 +0100 Subject: [PATCH] Using cout instead of printf --- src/tstdl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.10.4