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

(-)sithwm-1.2.3-orig/Makefile (-1 / +1 lines)
Lines 41-47 Link Here
41
EXDEFS= $(OPT_$(CC))
41
EXDEFS= $(OPT_$(CC))
42
EXDEFS_d = -g
42
EXDEFS_d = -g
43
43
44
CFLAGS_$(CC) = -std=c99 -Wall
44
CFLAGS_$(CC) = -std=c99 -Wall -Werror
45
CFLAGS_cc  = 
45
CFLAGS_cc  = 
46
CFLAGS += $(CFLAGS_$(CC)) $(INCLUDES) $(DEFINES) $(EXDEFS$(D))
46
CFLAGS += $(CFLAGS_$(CC)) $(INCLUDES) $(DEFINES) $(EXDEFS$(D))
47
47
(-)sithwm-1.2.3-orig/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 (;;) {
(-)sithwm-1.2.3-orig/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);
(-)sithwm-1.2.3-orig/screen.c (+3 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;
150
	 iwin.pos.x = 0;
151
	 iwin.pos.y = 0;
149
   }
152
   }
150
153
151
   int stackwidth = opt_popup_stack_width;
154
   int stackwidth = opt_popup_stack_width;

Return to bug 212633