search for: llong

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

Did you mean: long
2003 May 14
0
Patch: Allow statistics to specify xferred bytes greater than MAXLONG
...g Sun's Forte 6.2 compiler.) hf --------- patch below ------ % diff -c lib/snprintf.c~ lib/snprintf.c *** lib/snprintf.c~ Mon May 7 02:59:38 2001 --- lib/snprintf.c Tue May 13 15:41:31 2003 *************** *** 88,94 **** #define LDOUBLE double #endif ! #ifdef HAVE_LONG_LONG #define LLONG long long #else #define LLONG long --- 88,94 ---- #define LDOUBLE double #endif ! #ifdef HAVE_LONGLONG #define LLONG long long #else #define LLONG long *************** *** 555,566 **** static double my_modf(double x0, double *iptr) { int i; ! long l; double x =...
2006 Mar 17
3
[Bug 1173] scp reports lost connection for very large files
...are relevant lines from bsd-snprintf.c line 470 static void fmtint(char *buffer, size_t *currlen, size_t maxlen, long value, int base, int min, int max, int flags) { int signvalue = 0; unsigned long uvalue; It seems that type for 'value' should be 'LLONG' instead of 'long' and similarly type for 'uvalue' should be 'unsigned LLONG' instead of 'unsigned long'. In dopr() 'value' is defined as 'LLONG' (long long) but when it's passed to fmtint() it's cast from 'LLONG' (long long) to &...
2006 Aug 15
2
Windows build with Visual Studio 2005 - some success
...if (is_wild) return WILD_STR; - return WORD; + return YYWORD; } int yylex(YYSTYPE *lvalp, QParser *qp) --- ../../ferret/ferret/ext/store.h 2006-08-15 15:25:38.143765800 +1000 +++ ext/store.h 2006-08-15 14:54:55.157804300 +1000 @@ -121,8 +121,8 @@ unsigned int is_read_uint(InStream *is); ullong is_read_ulong(InStream *is); ullong is_read_vint(InStream *is); -void is_skip_vints(InStream *is, register int cnt); -void is_read_chars(InStream *is, char* buffer, int off, int len) ; +extern inline void is_skip_vints(InStream *is, register int cnt); +extern inline void is_read_chars(InStream *is...