Blob Blame History Raw
diff -up feh-1.3.4/src/md5.c~ feh-1.3.4/src/md5.c
--- feh-1.3.4/src/md5.c~	2008-04-03 12:04:52.000000000 +0200
+++ feh-1.3.4/src/md5.c	2008-04-03 12:04:52.000000000 +0200
@@ -39,6 +39,7 @@
  */
 
 #include "md5.h"
+#include <string.h>
 
 #ifdef TEST
 /*
@@ -46,7 +47,6 @@
  * The test program should print out the same values as given in section
  * A.5 of RFC 1321, reproduced below.
  */
-#include <string.h>
 main()
 {
     static const char *const test[7] = {
diff -up feh-1.3.4/src/support.c~ feh-1.3.4/src/support.c
--- feh-1.3.4/src/support.c~	2008-04-03 12:04:32.000000000 +0200
+++ feh-1.3.4/src/support.c	2008-04-03 12:04:32.000000000 +0200
@@ -233,7 +233,7 @@ feh_wm_set_bg(char *fil, Imlib_Image im,
           char *path;
           path = estrjoin("/", home, ".fehbg", NULL);
           if ((fp = fopen(path, "w")) == NULL) {
-	     wprintf("Can't open %s for write", path);
+	     weprintf("Can't open %s for write", path);
           } else {
              fprintf(fp, "%s\n", fehbg);
              fclose(fp);
diff -up feh-1.3.4/src/feh.h~ feh-1.3.4/src/feh.h
--- feh-1.3.4/src/feh.h~	2008-04-03 11:56:29.000000000 +0200
+++ feh-1.3.4/src/feh.h	2008-04-03 11:56:29.000000000 +0200
@@ -148,7 +148,7 @@ void feh_edit_inplace_lossless_rotate(wi
 gib_list * feh_wrap_string(char *text, int wrap_width, int max_height, Imlib_Font fn, gib_style * style);
 char *build_caption_filename(feh_file *file);
 gib_list * feh_list_jump(gib_list * root, gib_list * l, int direction, int num);
-
+void feh_draw_actions(winwidget w);
 
 /* Imlib stuff */
 extern Display *disp;