Update of /cvsroot/libexif/libexif/test
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv17639/test
Modified Files:
test-parse.c
Log Message:
fix param names
Index: test-parse.c
===================================================================
RCS file: /cvsroot/libexif/libexif/test/test-parse.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -d -r1.3 -r1.4
--- test-parse.c 29 Jun 2007 14:55:44 -0000 1.3
+++ test-parse.c 2 Aug 2007 03:03:54 -0000 1.4
@@ -87,7 +87,7 @@ void split_ws_string(const char *string,
if (str) {
memcpy(str, start, len);
str[len] = '\0';
- func(str, data);
+ func(str, callback_data);
free(str);
start = p+1;
}
@@ -115,7 +115,7 @@ int main(const int argc, const char *arg
}
for (i=1; i<argc; i++) {
- test_parse(argv[i], data);
+ test_parse(argv[i], callback_data);
}
return 0;
|