Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3082f617
Commit
3082f617
authored
Feb 01, 2011
by
Eli Zaretskii
Browse files
Fix a compiler warning in image.c.
image.c (tiff_load): Avoid compiler warning in 2nd arg to TIFFClientOpen.
parent
26d504d7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/image.c
src/image.c
+1
-1
No files found.
src/ChangeLog
View file @
3082f617
2011-02-01 Eli Zaretskii <eliz@gnu.org>
* image.c (tiff_load): Avoid compiler warning in 2nd arg to
TIFFClientOpen.
2011-02-01 Jan Djärv <jan.h.d@swipnet.se>
* xsmfns.c (ice_connection_closed): Call delete_read_fd.
src/image.c
View file @
3082f617
...
...
@@ -6798,7 +6798,7 @@ tiff_load (struct frame *f, struct image *img)
memsrc.len = SBYTES (specified_data);
memsrc.index = 0;
tiff = fn_TIFFClientOpen ("memory_source", "r", &memsrc,
tiff = fn_TIFFClientOpen ("memory_source", "r",
(thandle_t)
&memsrc,
(TIFFReadWriteProc) tiff_read_from_memory,
(TIFFReadWriteProc) tiff_write_from_memory,
tiff_seek_in_memory,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment