search for: gettabletranslationdomain

Displaying 3 results from an estimated 3 matches for "gettabletranslationdomain".

2002 Jan 07
2
rsync-2.5.1 / popt patches
...quot;argx" is greater than 0. Since this value can never be less than 0, a more appropriate test is to check if the value is non-zero. [Lint type diagnostic] POPT.H, POPT.C have an error with the definition of the poptStrerror routine. POPTHELP.C has an error with the definitions of the getTableTranslationDomain() and getArgDescrip() routines. Having a const qualifier on function return value is not legal. It is legal to return a const pointer. EAGLE> type lcl_popt:system_h.gdiff --- ref_popt:system.h Fri Feb 23 19:32:22 2001 +++ lcl_popt:system.h Sun Jan 6 08:42:28 2002 @@ -1,3 +1,4 @@ +/* Co...
2004 May 02
0
rsync 2.6.2: clean up compilation warnings
...p.c --- rsync-2.6.2-old/popt/popthelp.c 2004-01-27 10:27:05.000000000 -0600 +++ rsync-2.6.2/popt/popthelp.c 2004-05-02 13:23:52.000000000 -0500 @@ -63,7 +63,7 @@ /** * @param table option(s) */ -/*@observer@*/ /*@null@*/ static const char *const +/*@observer@*/ /*@null@*/ static const char * getTableTranslationDomain(/*@null@*/ const struct poptOption *table) /*@*/ { @@ -81,7 +81,7 @@ * @param opt option(s) * @param translation_domain translation domain */ -/*@observer@*/ /*@null@*/ static const char *const +/*@observer@*/ /*@null@*/ static const char * getArgDescrip(const struct poptOption * opt,...
2002 Mar 28
1
(no subject)
...o cc-3303 c89: WARNING File = popt/popt.h, Line = 117 A type qualifier on a return type is meaningless. /*@observer@*/ const char *const poptStrerror(const int error); ^ cc-3303 c89: WARNING File = popt/popthelp.c, Line = 30 A type qualifier on a return type is meaningless. getTableTranslationDomain(const struct poptOption *table) ^ cc-3303 c89: WARNING File = popt/popthelp.c, Line = 45 A type qualifier on a return type is meaningless. getArgDescrip(const struct poptOption * opt, const char *translation_domain) ^ c89 -mips3 -O2 -I. -I. -g -DHAVE_CONFIG_H -I./popt -c popt/poptp...