From 9b084b2a1d6452f742874159c8e5db7f63a11d3e Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Wed, 28 May 2014 15:40:24 +0000 Subject: [PATCH] Removing an unneeded format specifier. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4923 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 1 + src/browser.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 64505bc9..cd4b4570 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,7 @@ do_insertfile() in files.c is already present -- in the past just the wrong function was used in the relevant function-list item: 'do_insertfile_void' instead of the unintuitive 'ext_cmd_void'. + * src/browser (filesearch_init): Remove an unneeded format specifier. 2014-05-27 Chris Allegretta * src/winio.c (edit_refresh): wredrawln() is not supported under diff --git a/src/browser.c b/src/browser.c index 60f6546e..722dc9f6 100644 --- a/src/browser.c +++ b/src/browser.c @@ -797,7 +797,7 @@ int filesearch_init(void) #ifndef NANO_TINY &search_history, #endif - browser_refresh, "%s%s%s%s%s%s", _("Search"), + browser_refresh, "%s%s%s%s%s", _("Search"), #ifndef NANO_TINY ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") : #endif @@ -809,7 +809,7 @@ int filesearch_init(void) #ifndef NANO_TINY ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") : #endif - "", "", buf); + "", buf); /* Release buf now that we don't need it anymore. */ free(buf); -- 2.39.5