mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
694 B

  1. This fixes the error:
  2. gcc-40 -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/share/locale\" -I. -I. -I.. -I. -I. -I../intl -g -O2 -c `test -f 'output.c' || echo './'`output.c
  3. output.c:26: error: static declaration of 'output' follows non-static declaration
  4. indent.h:100: error: previous declaration of 'output' was here
  5. --- ./src/output.c~ 2002-12-12 18:36:49.000000000 +0100
  6. +++ ./src/output.c 2005-10-20 13:31:51.000000000 +0200
  7. @@ -23,7 +23,7 @@
  8. RCSTAG_CC ("$Id: output.c,v 1.5 2002/12/12 17:36:49 david Exp $");
  9. -static FILE * output = NULL;
  10. +FILE * output = NULL;
  11. static BOOLEAN inhibited = 0;
  12. static buf_break_st_ty * buf_break_list = NULL;