On Wed, 24 Sep 2014 00:07:16 +0200, Ulrich Wilkens wrote:
> Resolve many build warnings
>
> This patch fixes many warnings from the beginning of the build up to
> and including the depend stage. Nearly all warnings should be gone
> even with -Wall.
>
> The main problem was the depend stage for
Pascal Stumpf writes:
> I believe I found two types of problems in this patch:
>
> - mkstemp(tmpMakefile);
> + int ret = mkstemp(tmpMakefile);
> + (void) ret;
>
> Why not (void)mkstemp(...)? But this should really actually *do*
> something with the r