search for: 214f7fc

Displaying 3 results from an estimated 3 matches for "214f7fc".

2016 Mar 06
0
[PATCH 5/5] installers: fix a MinGW redefinition warning
...eo.ie> > Date: Tue, 23 Feb 2016 20:03:36 +0000 > Subject: [PATCH 5/5] installers: fix a MinGW redef warning > > --- > libinstaller/setadv.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/libinstaller/setadv.c b/libinstaller/setadv.c > index 214f7fc..437583e 100644 > --- a/libinstaller/setadv.c > +++ b/libinstaller/setadv.c > @@ -14,13 +14,12 @@ > /* > * setadv.c > * > - * (Over)write a data item in the auxilliary data vector. To > + * (Over)write a data item in the auxiliary data vector. To > * delete an it...
2016 Feb 24
2
[PATCH 5/5] installers: fix a MinGW redefinition warning
I get a redefinition warning on _GNU_SOURCE when compiling with MinGW, and while I could see that this #define was introduced in e4fc44 [1], but the reason to introduce it is not mentioned, and I can't really see a good reason to have it, especially as MSVC will happily compile that source. So far I have found no evidence that _GNU_SOURCE applies to memset/memmove/memcpy, which are the
2016 Jun 04
0
[PATCH] Wedding gift, removing double l from auxilliary
...if (err == -2) - fprintf(stderr, "%s: cannot write auxilliary data (need --update)?\n", + fprintf(stderr, "%s: cannot write auxiliary data (need --update)?\n", file); else if (err == -1) perror(file); diff --git a/libinstaller/setadv.c b/libinstaller/setadv.c index 214f7fc..47a637b 100644 --- a/libinstaller/setadv.c +++ b/libinstaller/setadv.c @@ -14,7 +14,7 @@ /* * setadv.c * - * (Over)write a data item in the auxilliary data vector. To + * (Over)write a data item in the auxiliary data vector. To * delete an item, set its length to zero. * * Return 0 on...