[02/16] tools-utils: Fix indentation

Message ID 87a5tygl7h.fsf@redhat.com
State New
Headers
Series Fixing various issues found while working on PR30309 |

Commit Message

Dodji Seketeli Sept. 7, 2023, 1:35 p.m. UTC
  Hello,

	* src/abg-tools-utils.cc (string_suffix): Fix indentation.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
---
 src/abg-tools-utils.cc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
  

Patch

diff --git a/src/abg-tools-utils.cc b/src/abg-tools-utils.cc
index 5287c99e..2ea6f8b4 100644
--- a/src/abg-tools-utils.cc
+++ b/src/abg-tools-utils.cc
@@ -1067,9 +1067,9 @@  split_string(const string& input_string,
 /// @return true iff the function could find a prefix for the suffix
 /// @p suffix in the input string @p input_string.
 bool
-string_suffix(const string& input_string,
-	      const string& prefix,
-	      string& suffix)
+string_suffix(const string&	input_string,
+	      const string&	prefix,
+	      string&		suffix)
 {
   // Some basic sanity check before we start hostilities.
   if (prefix.length() >= input_string.length())