]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[gdb] Fix typo in gdb/break-catch-syscall.c
authorTom de Vries <tdevries@suse.de>
Fri, 6 Jun 2025 11:18:30 +0000 (13:18 +0200)
committerTom de Vries <tdevries@suse.de>
Fri, 6 Jun 2025 11:18:30 +0000 (13:18 +0200)
Fix typo "if the feature if supported" -> "if the feature is supported".

gdb/break-catch-syscall.c

index 348ff41afc4a56cabd6f706848a29ad6f37b1dad..3d28898566ca7ee2f4c8ce2812b12161b1690ea8 100644 (file)
@@ -423,7 +423,7 @@ catch_syscall_command_1 (const char *arg, int from_tty,
   struct syscall s;
   struct gdbarch *gdbarch = get_current_arch ();
 
-  /* Checking if the feature if supported.  */
+  /* Checking if the feature is supported.  */
   if (gdbarch_get_syscall_number_p (gdbarch) == 0)
     error (_("The feature 'catch syscall' is not supported on \
 this architecture yet."));