URI:
       tFixed an error (THANKS YOU GCC) - wmutils - X windows manipulation utilities
  HTML git clone git://z3bra.org/wmutils
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit cd17b406e22ecc78dce7c86f45eb92da08d5f575
   DIR parent b45f55ba9182ed4d662eb307524567037a516ec3
  HTML Author: z3bra <willy@mailoo.org>
       Date:   Fri, 19 Dec 2014 19:25:52 +0100
       
       Fixed an error (THANKS YOU GCC)
       
       Diffstat:
         M Makefile                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/Makefile b/Makefile
       t@@ -35,7 +35,7 @@ $(OBJ): $(HDR) util.o
        
        .o:
                @echo "LD $@"
       -        @$(LD) $< -o $@ $(LDFLAGS) util.o
       +        @$(LD) $< util.o -o $@ $(LDFLAGS)
        
        .c.o:
                @echo "CC $<"