Remove unnecessary debug

svn path=/trunk/netsurf/; revision=11776
This commit is contained in:
John Mark Bell 2011-02-23 22:55:39 +00:00
parent 308f549f78
commit fc09f79aa4

View File

@ -46,9 +46,6 @@ fb_init_resource(const char *resource_path)
char **pathv; /* resource path string vector */
char **respath; /* resource paths vector */
const char *lang = NULL;
char *foo;
int bar=0;
fprintf(stderr, "fb_init_resource:%s\n",resource_path);
pathv = resource_path_to_strvec(resource_path);
@ -56,12 +53,6 @@ fb_init_resource(const char *resource_path)
resource_free_strvec(pathv);
foo = respath[bar];
while (foo != NULL) {
fprintf(stderr, "%s\n",foo);
bar++;
foo = respath[bar];
}
return respath;
}