From: Tom de Vries Date: Fri, 6 Jun 2025 11:18:30 +0000 (+0200) Subject: [gdb] Fix typo in gdb/break-catch-syscall.c X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0723ae1439c887887a860a12c562f78a9bd54b69;p=thirdparty%2Fbinutils-gdb.git [gdb] Fix typo in gdb/break-catch-syscall.c Fix typo "if the feature if supported" -> "if the feature is supported". --- diff --git a/gdb/break-catch-syscall.c b/gdb/break-catch-syscall.c index 348ff41afc4..3d28898566c 100644 --- a/gdb/break-catch-syscall.c +++ b/gdb/break-catch-syscall.c @@ -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."));