From 49b98d08de2a18889059e11089f9e88b067a5b55 Mon Sep 17 00:00:00 2001 From: Tom Gilbert Date: Sun, 12 Aug 2001 13:47:39 +0000 Subject: [PATCH] sorry, debugging stuff SVN revision: 5125 --- src/image.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/image.c b/src/image.c index 231132d..4bf117e 100644 --- a/src/image.c +++ b/src/image.c @@ -1024,7 +1024,6 @@ __imlib_LoadImage(const char *file, ImlibProgressFunction progress, ImlibImage *im; ImlibLoader *best_loader; char loader_ret = 0; - struct stat st; if (!file) return NULL; if (file[0] == 0) return NULL; @@ -1064,16 +1063,13 @@ __imlib_LoadImage(const char *file, ImlibProgressFunction progress, /* so produce a new one and load an image into that */ im = __imlib_ProduceImage(); im->file = strdup(file); - printf("file is %s\n", file); if(__imlib_IsRealFile(file)) { - printf("file %s exists\n", file); im->real_file = strdup(im->file); im->key = NULL; } else { - printf("file %s does not exist\n", file); im->real_file = __imlib_FileRealFile(file); im->key = __imlib_FileKey(file); }