aboutsummaryrefslogtreecommitdiffstats
path: root/src/image.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/image.c')
-rw-r--r--src/image.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/image.c b/src/image.c
index 0ae8bf10399..34d89d2e195 100644
--- a/src/image.c
+++ b/src/image.c
@@ -598,7 +598,7 @@ Lisp_Object Vimage_cache_eviction_delay;
598 598
599static Lisp_Object define_image_type (struct image_type *type, int loaded); 599static Lisp_Object define_image_type (struct image_type *type, int loaded);
600static struct image_type *lookup_image_type (Lisp_Object symbol); 600static struct image_type *lookup_image_type (Lisp_Object symbol);
601static void image_error (char *format, Lisp_Object, Lisp_Object); 601static void image_error (const char *format, Lisp_Object, Lisp_Object);
602static void x_laplace (struct frame *, struct image *); 602static void x_laplace (struct frame *, struct image *);
603static void x_emboss (struct frame *, struct image *); 603static void x_emboss (struct frame *, struct image *);
604static int x_build_heuristic_mask (struct frame *, struct image *, 604static int x_build_heuristic_mask (struct frame *, struct image *,
@@ -699,7 +699,7 @@ valid_image_p (Lisp_Object object)
699 therefore simply displays a message. */ 699 therefore simply displays a message. */
700 700
701static void 701static void
702image_error (char *format, Lisp_Object arg1, Lisp_Object arg2) 702image_error (const char *format, Lisp_Object arg1, Lisp_Object arg2)
703{ 703{
704 add_to_log (format, arg1, arg2); 704 add_to_log (format, arg1, arg2);
705} 705}
@@ -731,7 +731,7 @@ enum image_value_type
731struct image_keyword 731struct image_keyword
732{ 732{
733 /* Name of keyword. */ 733 /* Name of keyword. */
734 char *name; 734 const char *name;
735 735
736 /* The type of value allowed. */ 736 /* The type of value allowed. */
737 enum image_value_type type; 737 enum image_value_type type;