Fix whitespace error in previous commit.

https://sourceware.org/ml/gdb-cvs/2013-09/msg00108.html
  https://sourceware.org/ml/gdb-patches/2013-09/msg00225.html

gdb/ChangeLog

        * main.h (get_gdb_program_name): Remove extra whitespace.
This commit is contained in:
Andrew Burgess 2013-09-18 11:45:20 +00:00
parent c88a15316e
commit 71926e2810
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-09-18 Andrew Burgess <aburgess@broadcom.com>
* main.h (get_gdb_program_name): Remove extra whitespace.
2013-09-18 Andrew Burgess <aburgess@broadcom.com>
* main.h (get_gdb_program_name): Add declaration.

View File

@ -46,6 +46,6 @@ extern char *windows_get_absolute_argv0 (const char *argv0);
might have been expanded to an absolute path if required by the
platform. Could return NULL if called before gdb has had a chance to
parse the argv array. */
extern const char * get_gdb_program_name (void);
extern const char *get_gdb_program_name (void);
#endif