Trivial: Add missing space

Message ID 20220603124646.315022-1-woodard@redhat.com
State New
Headers
Series Trivial: Add missing space |

Commit Message

Ben Woodard June 3, 2022, 12:46 p.m. UTC
  This is absolutely trivial but I noticed this missing space one day
and fixed it and have been carrying the hunk of patch for months.

    	* tools/abicompat.cc - add missing space in expression.

Signed-off-by: Ben Woodard <woodard@redhat.com>
---
 tools/abicompat.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Dodji Seketeli June 7, 2022, 1:17 p.m. UTC | #1
Ben Woodard via Libabigail <libabigail@sourceware.org> a écrit:

> This is absolutely trivial but I noticed this missing space one day
> and fixed it and have been carrying the hunk of patch for months.
>
>     	* tools/abicompat.cc - add missing space in expression.

Thanks, I have applied this to master.

I have just amdended the ChangeLog part of the log to make it comply
with the standard.

Here is the applied patch.

From bb935f62197532b35bb2d63c4f7cd532a7d91d57 Mon Sep 17 00:00:00 2001
From: Ben Woodard <woodard@redhat.com>
Date: Fri, 3 Jun 2022 05:46:46 -0700
Subject: [PATCH] abicompat: Add missing space

This is absolutely trivial but I noticed this missing space one day
and fixed it and have been carrying the hunk of patch for months.

	* tools/abicompat.cc (main): Add missing space in expression.

Signed-off-by: Ben Woodard <woodard@redhat.com>
Signed-off-by: Dodji Seketeli <dodji@redhat.com>
---
 tools/abicompat.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/abicompat.cc b/tools/abicompat.cc
index f4bc384d..913724c7 100644
--- a/tools/abicompat.cc
+++ b/tools/abicompat.cc
@@ -691,7 +691,7 @@ main(int argc, char* argv[])
   suppressions_type& supprs = ctxt->suppressions();
   bool files_suppressed = (file_is_suppressed(opts.app_path, supprs)
 			   || file_is_suppressed(opts.lib1_path, supprs)
-			   ||file_is_suppressed(opts.lib2_path, supprs));
+			   || file_is_suppressed(opts.lib2_path, supprs));
 
   if (files_suppressed)
     // We don't have to compare anything because a user
  

Patch

diff --git a/tools/abicompat.cc b/tools/abicompat.cc
index f4bc384d..913724c7 100644
--- a/tools/abicompat.cc
+++ b/tools/abicompat.cc
@@ -691,7 +691,7 @@  main(int argc, char* argv[])
   suppressions_type& supprs = ctxt->suppressions();
   bool files_suppressed = (file_is_suppressed(opts.app_path, supprs)
 			   || file_is_suppressed(opts.lib1_path, supprs)
-			   ||file_is_suppressed(opts.lib2_path, supprs));
+			   || file_is_suppressed(opts.lib2_path, supprs));
 
   if (files_suppressed)
     // We don't have to compare anything because a user