summaryrefslogtreecommitdiff
path: root/framebuffer
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-02-23 22:55:39 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-02-23 22:55:39 +0000
commitfc09f79aa4ce3bf5e85110a3e1846e84d1a2f768 (patch)
tree636e35645ee742528638b0e49f2d77bc9002e328 /framebuffer
parent308f549f7849da791ca1b52df67fcf0ccc09e6af (diff)
downloadnetsurf-fc09f79aa4ce3bf5e85110a3e1846e84d1a2f768.tar.gz
netsurf-fc09f79aa4ce3bf5e85110a3e1846e84d1a2f768.tar.bz2
Remove unnecessary debug
svn path=/trunk/netsurf/; revision=11776
Diffstat (limited to 'framebuffer')
-rw-r--r--framebuffer/findfile.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/framebuffer/findfile.c b/framebuffer/findfile.c
index 130804eed..ba4f87218 100644
--- a/framebuffer/findfile.c
+++ b/framebuffer/findfile.c
@@ -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;
}