From c2df63f586d6c86a2c1404401a6f6a94d3d3ad53 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sat, 4 Feb 2023 11:24:54 -0700 Subject: [PATCH] Remove an errant printf from fish_tests --- src/fish_tests.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/fish_tests.cpp b/src/fish_tests.cpp index d8704fe6c..21eda2426 100644 --- a/src/fish_tests.cpp +++ b/src/fish_tests.cpp @@ -7047,7 +7047,6 @@ void test_wgetopt() { } case '?': { // unrecognized option - fprintf(stderr, "got arg %d\n", w.woptind - 1); if (argv[w.woptind - 1]) { do_test(argv[w.woptind - 1] != nullptr); arguments.push_back(argv[w.woptind - 1]);