aboutsummaryrefslogtreecommitdiffstats
path: root/src/image.c
diff options
context:
space:
mode:
authorJuanma Barranquero2011-05-06 03:05:25 +0200
committerJuanma Barranquero2011-05-06 03:05:25 +0200
commitdbdb9a7caedcc8e66a3064ebb362d9ac43f1eee2 (patch)
treebd4aac59a83d50ac2cb3b8eafe2c86dd950e5d0d /src/image.c
parent989681bbb6aa67dd27ec1552a6bef29e4b0b29ec (diff)
downloademacs-dbdb9a7caedcc8e66a3064ebb362d9ac43f1eee2.tar.gz
emacs-dbdb9a7caedcc8e66a3064ebb362d9ac43f1eee2.zip
src/gnutls.c, src/image.c: Make function pointers static.
Diffstat (limited to 'src/image.c')
-rw-r--r--src/image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c
index d78b556d8c9..c091fea045e 100644
--- a/src/image.c
+++ b/src/image.c
@@ -1892,7 +1892,7 @@ mark_image_cache (struct image_cache *c)
1892#ifdef HAVE_NTGUI 1892#ifdef HAVE_NTGUI
1893 1893
1894/* Macro for defining functions that will be loaded from image DLLs. */ 1894/* Macro for defining functions that will be loaded from image DLLs. */
1895#define DEF_IMGLIB_FN(rettype,func,args) rettype (FAR CDECL *fn_##func)args 1895#define DEF_IMGLIB_FN(rettype,func,args) static rettype (FAR CDECL *fn_##func)args
1896 1896
1897/* Macro for loading those image functions from the library. */ 1897/* Macro for loading those image functions from the library. */
1898#define LOAD_IMGLIB_FN(lib,func) { \ 1898#define LOAD_IMGLIB_FN(lib,func) { \