[gdb] Fix typo in gdb/break-catch-syscall.c

Fix typo "if the feature if supported" -> "if the feature is supported".
This commit is contained in:
Tom de Vries
2025-06-06 13:18:30 +02:00
parent 42cd563171
commit 0723ae1439

View 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."));