diff options
Diffstat (limited to 'gdb/guile/guile.c')
-rw-r--r-- | gdb/guile/guile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/guile/guile.c b/gdb/guile/guile.c index f9481c94aec..b010e59b345 100644 --- a/gdb/guile/guile.c +++ b/gdb/guile/guile.c @@ -628,9 +628,9 @@ initialize_scheme_side (void) char *boot_scm_path; char *msg; - guile_datadir = concat (gdb_datadir, SLASH_STRING, "guile", NULL); + guile_datadir = concat (gdb_datadir, SLASH_STRING, "guile", (char *) NULL); boot_scm_path = concat (guile_datadir, SLASH_STRING, "gdb", - SLASH_STRING, boot_scm_filename, NULL); + SLASH_STRING, boot_scm_filename, (char *) NULL); scm_c_catch (SCM_BOOL_T, boot_guile_support, boot_scm_path, handle_boot_error, boot_scm_path, NULL, NULL); |