commit 9d7c6bd9f28c34d42a01d62473b295f3aed6766d
parent 5368861f94913a92d8570e72e59f8f229e9d8097
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 7 Mar 2010 15:57:09 +0000
fixed format string issue (Mantis 1544)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/extractor.c b/src/main/extractor.c
@@ -191,7 +191,7 @@ get_path_from_proc_exe() {
if (f != NULL) {
while (NULL != fgets(line, 1024, f)) {
if ( (1 == sscanf(line,
- "%*x-%*x %*c%*c%*c%*c %*x %*2u:%*2u %*u%*[ ]%s",
+ "%*x-%*x %*c%*c%*c%*c %*x %*2x:%*2x %*u%*[ ]%s",
dir)) &&
(NULL != strstr(dir,
"libextractor")) ) {