diff options
author | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2008-11-30 02:59:34 -0200 |
---|---|---|
committer | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2008-11-30 02:59:34 -0200 |
commit | 16b11cd03d8c5def07f0e598f237f71a37883a46 (patch) | |
tree | 98b4eb096e87571a0c8de78e6129719626a22584 /xkb/xkmread.c | |
parent | fb22d4d928bc5d1a893494a059359da2ed2ac639 (diff) |
Correct static symbol XkmReadTOC and first pass on compile warning fixes.
The warnings corrected were only the ones that should correct
real problems. The most common one is 64 bit integers as
"printf %l" arguments.
Note that there is a patch related to this at:
http://bugs.freedesktop.org/show_bug.cgi?id=18204
Diffstat (limited to 'xkb/xkmread.c')
-rw-r--r-- | xkb/xkmread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xkb/xkmread.c b/xkb/xkmread.c index f9b4025da..b7bb20965 100644 --- a/xkb/xkmread.c +++ b/xkb/xkmread.c @@ -1043,7 +1043,7 @@ int nRead=0; return 1; } -_X_EXPORT static Bool +static Bool XkmReadTOC(FILE *file,xkmFileInfo* file_info,int max_toc,xkmSectionInfo *toc) { unsigned hdr,tmp; |