summaryrefslogtreecommitdiff
path: root/tools/checkwps
diff options
context:
space:
mode:
Diffstat (limited to 'tools/checkwps')
-rw-r--r--tools/checkwps/checkwps.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/checkwps/checkwps.c b/tools/checkwps/checkwps.c
index 06f88bbbbf..10e505f006 100644
--- a/tools/checkwps/checkwps.c
+++ b/tools/checkwps/checkwps.c
@@ -294,6 +294,7 @@ int main(int argc, char **argv)
294 while (argv[filearg]) { 294 while (argv[filearg]) {
295 const char* name = argv[filearg++]; 295 const char* name = argv[filearg++];
296 char *ext = strrchr(name, '.'); 296 char *ext = strrchr(name, '.');
297 struct skin_stats stats;
297 printf("Checking %s...\n", name); 298 printf("Checking %s...\n", name);
298 if (!ext) 299 if (!ext)
299 { 300 {
@@ -321,7 +322,7 @@ int main(int argc, char **argv)
321 } 322 }
322 wps_screen = &screens[screen]; 323 wps_screen = &screens[screen];
323 324
324 res = skin_data_load(screen, &wps, name, true); 325 res = skin_data_load(screen, &wps, name, true, &stats);
325 326
326 if (!res) { 327 if (!res) {
327 printf("WPS parsing failure\n"); 328 printf("WPS parsing failure\n");