Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 212633 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 40-46 Link Here
40
EXDEFS= $(OPT_$(CC))
40
EXDEFS= $(OPT_$(CC))
41
EXDEFS_d = -g
41
EXDEFS_d = -g
42
42
43
CFLAGS_$(CC) = -std=c99 -Wall
43
CFLAGS_$(CC) = -std=c99 -Wall -Werror
44
CFLAGS_cc  = 
44
CFLAGS_cc  = 
45
CFLAGS += $(CFLAGS_$(CC)) $(INCLUDES) $(DEFINES) $(EXDEFS$(D))
45
CFLAGS += $(CFLAGS_$(CC)) $(INCLUDES) $(DEFINES) $(EXDEFS$(D))
46
46
(-)menu.c (-1 / +1 lines)
Lines 355-361 Link Here
355
   int freem = 1;
355
   int freem = 1;
356
   int freestrs = 1;
356
   int freestrs = 1;
357
   struct area a;
357
   struct area a;
358
   unsigned int mask;
358
   unsigned int mask = NoValue;
359
   char*p=global_buffer;
359
   char*p=global_buffer;
360
   char ent_type[3] = "\0";
360
   char ent_type[3] = "\0";
361
   for (;;) {
361
   for (;;) {
(-)misc.c (-1 / +1 lines)
Lines 21-27 Link Here
21
            char *dot = strchr(colon, '.');
21
            char *dot = strchr(colon, '.');
22
            if (!dot)
22
            if (!dot)
23
               dot = colon + strlen(colon);
23
               dot = colon + strlen(colon);
24
            snprintf(dot, 5, ".%d", current_screen-screens);
24
            snprintf(dot, 5, ".%ld", current_screen-screens);
25
            putenv(ebuf);
25
            putenv(ebuf);
26
         }
26
         }
27
	 snprintf(global_buffer, sizeof global_buffer, "%s&", command);
27
	 snprintf(global_buffer, sizeof global_buffer, "%s&", command);
(-)screen.c (+1 lines)
Lines 146-151 Link Here
146
   }break;
146
   }break;
147
   default:
147
   default:
148
	 iwin.w = 0;
148
	 iwin.w = 0;
149
	 iwin.h = 0;
149
   }
150
   }
150
151
151
   int stackwidth = opt_popup_stack_width;
152
   int stackwidth = opt_popup_stack_width;

Return to bug 212633