search for: 5bf3fbd

Displaying 2 results from an estimated 2 matches for "5bf3fbd".

2009 Aug 18
1
[PATCH libguestfs] avoid compiler warnings about unused vars in generated code
...into a convenience library, so it can have its own CFLAGS, and link that into guestfish. generator.ml: Use TABs, not spaces for indentation. --- fish/Makefile.am | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/fish/Makefile.am b/fish/Makefile.am index 8c289dc..5bf3fbd 100644 --- a/fish/Makefile.am +++ b/fish/Makefile.am @@ -35,12 +35,15 @@ guestfish_SOURCES = \ lcd.c \ more.c \ rc.c \ - rc_protocol.c \ - rc_protocol.h \ reopen.c \ tilde.c \ time.c +# This convenience library is solely to avoid compiler warnings +# in its generated sources. +librc_pr...
2009 Aug 21
9
enable -Werror and all of gcc's warning options
Here is a bunch of small patches to make fish/ build with most warnings enabled: [1/9] edit.c: avoid warning about signed/unsigned comparison [2/9] fish.c: avoid warnings [3/9] tilde.c: avoid a warning [4/9] fish.c: avoid "assignment discards qualifiers..." warning [5/9] fish.c: avoid signed/unsigned-comparison warning [6/9] fish.c: don't perform arithmetic on void*