Update of /cvsroot/cscope/cscope/src
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv15607/src
Modified Files:
global.h
Log Message:
Fix mismatch of decl/defn for global variable tempstring
Index: global.h
===================================================================
RCS file: /cvsroot/cscope/cscope/src/global.h,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -r1.35 -r1.36
*** global.h 23 Jul 2006 20:59:20 -0000 1.35
--- global.h 30 Jun 2008 21:16:02 -0000 1.36
***************
*** 249,253 ****
extern long totalterms; /* total inverted index terms */
extern BOOL trun_syms; /* truncate symbols to 8 characters */
! extern char tempstring[8192]; /* global dummy string buffer */
extern char *tmpdir; /* temporary directory */
--- 249,253 ----
extern long totalterms; /* total inverted index terms */
extern BOOL trun_syms; /* truncate symbols to 8 characters */
! extern char tempstring[TEMPSTRING_LEN + 1]; /* global dummy string buffer */
extern char *tmpdir; /* temporary directory */
|