diff options
Diffstat (limited to 'src/image.c')
| -rw-r--r-- | src/image.c | 6 |
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 | ||
| 599 | static Lisp_Object define_image_type (struct image_type *type, int loaded); | 599 | static Lisp_Object define_image_type (struct image_type *type, int loaded); |
| 600 | static struct image_type *lookup_image_type (Lisp_Object symbol); | 600 | static struct image_type *lookup_image_type (Lisp_Object symbol); |
| 601 | static void image_error (char *format, Lisp_Object, Lisp_Object); | 601 | static void image_error (const char *format, Lisp_Object, Lisp_Object); |
| 602 | static void x_laplace (struct frame *, struct image *); | 602 | static void x_laplace (struct frame *, struct image *); |
| 603 | static void x_emboss (struct frame *, struct image *); | 603 | static void x_emboss (struct frame *, struct image *); |
| 604 | static int x_build_heuristic_mask (struct frame *, struct image *, | 604 | static 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 | ||
| 701 | static void | 701 | static void |
| 702 | image_error (char *format, Lisp_Object arg1, Lisp_Object arg2) | 702 | image_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 | |||
| 731 | struct image_keyword | 731 | struct 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; |