diff options
| author | Paul Eggert | 2011-02-06 22:18:23 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-02-06 22:18:23 -0800 |
| commit | b19beacc5491758e57e2afb890aa9fdd696a9e0e (patch) | |
| tree | 4cdd9ce6056597bc8701ca9095807d4590154642 /src/image.c | |
| parent | c45e52762bee7033872fbc34f3dc3a343c77855d (diff) | |
| download | emacs-b19beacc5491758e57e2afb890aa9fdd696a9e0e.tar.gz emacs-b19beacc5491758e57e2afb890aa9fdd696a9e0e.zip | |
* image.c: conform to C89 pointer rules
Diffstat (limited to 'src/image.c')
| -rw-r--r-- | src/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |