This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Other format: | [Raw text] |
s/craete/create
(Minor note: pedantically, uppercase is used when talking about the value of the variable, rather than the variable itself.)
-extern char *skip_to_space (char *inp); +#define skip_to_space(INP) ((char *) skip_to_space_const ((INP)))
Double (())s not necessary:
#define skip_to_space(INP) ((char *) skip_to_space_const (INP))
Can you please add:
+ /* A const-correct version of the above. */
Otherwise this all looks good to me.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |