aboutsummaryrefslogtreecommitdiff
path: root/gdb/main.c
diff options
context:
space:
mode:
authorChristian Biesinger <cbiesinger@google.com>2019-09-06 14:19:40 -0500
committerChristian Biesinger <cbiesinger@google.com>2019-09-06 14:34:00 -0500
commitead0e69a4ab34d0c689f0c4c310b8d788867da32 (patch)
tree8576865db99709d178d08ee5039cc690d4862b0d /gdb/main.c
parentf5c3a9e3055224d8ed8140d48c96465294839e95 (diff)
downloadbinutils-ead0e69a4ab34d0c689f0c4c310b8d788867da32.zip
binutils-ead0e69a4ab34d0c689f0c4c310b8d788867da32.tar.gz
binutils-ead0e69a4ab34d0c689f0c4c310b8d788867da32.tar.bz2
Change int to bool for the relocate_* functions
These parameters are only used as bools. This also renames "flag" to "relocatable" to make it clearer what it does. gdb/ChangeLog: 2019-09-06 Christian Biesinger <cbiesinger@google.com> * defs.h (relocate_gdb_directory): Change int to bool in signature and rename flag to relocatable. * main.c (relocate_path): Likewise. (relocate_gdb_directory): Likewise.
Diffstat (limited to 'gdb/main.c')
-rw-r--r--gdb/main.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/main.c b/gdb/main.c
index 678c413..129c57c 100644
--- a/gdb/main.c
+++ b/gdb/main.c
@@ -139,14 +139,14 @@ set_gdb_data_directory (const char *new_datadir)
/* Relocate a file or directory. PROGNAME is the name by which gdb
was invoked (i.e., argv[0]). INITIAL is the default value for the
- file or directory. FLAG is true if the value is relocatable, false
- otherwise. Returns a newly allocated string; this may return NULL
- under the same conditions as make_relative_prefix. */
+ file or directory. RELOCATABLE is true if the value is relocatable,
+ false otherwise. Returns a newly allocated string; this may return
+ NULL under the same conditions as make_relative_prefix. */
static char *
-relocate_path (const char *progname, const char *initial, int flag)
+relocate_path (const char *progname, const char *initial, bool relocatable)
{
- if (flag)
+ if (relocatable)
return make_relative_prefix (progname, BINDIR, initial);
return xstrdup (initial);
}
@@ -158,11 +158,11 @@ relocate_path (const char *progname, const char *initial, int flag)
function always returns a newly-allocated string. */
char *
-relocate_gdb_directory (const char *initial, int flag)
+relocate_gdb_directory (const char *initial, bool relocatable)
{
char *dir;
- dir = relocate_path (gdb_program_name, initial, flag);
+ dir = relocate_path (gdb_program_name, initial, relocatable);
if (dir)
{
struct stat s;