* image.c (my_png_error, my_error_exit): Mark with NO_RETURN.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 13 Mar 2011 08:04:44 +0000 (00:04 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 13 Mar 2011 08:04:44 +0000 (00:04 -0800)
src/ChangeLog
src/image.c

index 2a2ef75..45ee012 100644 (file)
@@ -3,6 +3,7 @@
        * image.c (four_corners_best): Mark locals as initialized.
        (gif_load): Initialize transparent_p to zero (Bug#8238).
        Mark another local as initialized.
+       (my_png_error, my_error_exit): Mark with NO_RETURN.
 
 2011-03-11  Paul Eggert  <eggert@cs.ucla.edu>
 
index a4be1d1..7584f9b 100644 (file)
@@ -5530,6 +5530,7 @@ init_png_functions (Lisp_Object libraries)
 /* Error and warning handlers installed when the PNG library
    is initialized.  */
 
+static void my_png_error (png_struct *, const char *) NO_RETURN;
 static void
 my_png_error (png_struct *png_ptr, const char *msg)
 {
@@ -6104,6 +6105,7 @@ struct my_jpeg_error_mgr
 };
 
 
+static void my_error_exit (j_common_ptr) NO_RETURN;
 static void
 my_error_exit (j_common_ptr cinfo)
 {