diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/image.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 62316385940..24ec9ce43cd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -28,6 +28,7 @@ | |||
| 28 | * indent.c (compute_motion): Likewise. | 28 | * indent.c (compute_motion): Likewise. |
| 29 | * xfont.c (xfont_decode_coding_xlfd): Likewise. | 29 | * xfont.c (xfont_decode_coding_xlfd): Likewise. |
| 30 | * ralloc.c (resize_bloc): Likewise. | 30 | * ralloc.c (resize_bloc): Likewise. |
| 31 | * image.c (tiff_load): Likewise. | ||
| 31 | * xml.c (make_dom, parse_region): Likewise. | 32 | * xml.c (make_dom, parse_region): Likewise. |
| 32 | * character.c (strwidth): Make its argument const char *, not const | 33 | * character.c (strwidth): Make its argument const char *, not const |
| 33 | unsigned char *, since more callers prefer it that way. All callers | 34 | unsigned char *, since more callers prefer it that way. All callers |
diff --git a/src/image.c b/src/image.c index 314849ef750..c7820c3a7fe 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -6778,7 +6778,7 @@ tiff_load (struct frame *f, struct image *img) | |||
| 6778 | } | 6778 | } |
| 6779 | 6779 | ||
| 6780 | /* Try to open the image file. */ | 6780 | /* Try to open the image file. */ |
| 6781 | tiff = fn_TIFFOpen (SDATA (file), "r"); | 6781 | tiff = fn_TIFFOpen (SSDATA (file), "r"); |
| 6782 | if (tiff == NULL) | 6782 | if (tiff == NULL) |
| 6783 | { | 6783 | { |
| 6784 | image_error ("Cannot open `%s'", file, Qnil); | 6784 | image_error ("Cannot open `%s'", file, Qnil); |