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