diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2008-10-20 19:36:52 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-10-20 19:36:52 -0700 |
commit | 41e4e2de4d73d098d332ece0410e9f8fda4fe10d (patch) | |
tree | 837fd242fae8a968e62071612729aa7b31f9f3d5 | |
parent | 64323668c07b4768c57649f5ec7e2888265d1aeb (diff) |
X.Org Bug 17944: avoid gcc warning for libXpm
<http://bugs.freedesktop.org/show_bug.cgi?id=17944>
Avoid the gcc warning
cxpm/cxpm.c:102: warning: no previous prototype for 'ErrorMessage'
-rw-r--r-- | cxpm/cxpm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cxpm/cxpm.c b/cxpm/cxpm.c index 3b5e603..ed0c7c8 100644 --- a/cxpm/cxpm.c +++ b/cxpm/cxpm.c @@ -94,7 +94,7 @@ sUngetc(data, c, file) #include "Attrib.c" #include "Image.c" -void +static void ErrorMessage( int ErrorStatus, xpmData *data) |