gdb/auto-load: Remove repeating "auto-load" from debug message
authorAaron Merey <amerey@redhat.com>
Thu, 10 Mar 2022 20:31:33 +0000 (15:31 -0500)
committerAaron Merey <amerey@redhat.com>
Thu, 10 Mar 2022 20:50:59 +0000 (15:50 -0500)
Remove "auto-load:" from a format string passed to auto_load_debug_printf.
It is unnecessary since this function will prefix the string with "[auto-load]"
when printing it.

gdb/auto-load.c

index 5253b320543573d15680c97c140e98b76d6e5295..5f530d080c3a5a8d327b4f3b4f0605c31be55d6d 100644 (file)
@@ -841,8 +841,7 @@ auto_load_objfile_script (struct objfile *objfile,
       realname.get ()[len] = '\0';
 
       auto_load_debug_printf
-       ("auto-load: Stripped .exe suffix, retrying with \"%s\".",
-        realname.get ());
+       ("Stripped .exe suffix, retrying with \"%s\".", realname.get ());
 
       auto_load_objfile_script_1 (objfile, realname.get (), language);
       return;