Blame SOURCES/0051-Fix-indentation-issues-using-newer-uncrustify.patch

73b847
From d1bf2cc0c69210bf8c835399edb3578c4c69c4a6 Mon Sep 17 00:00:00 2001
73b847
From: Benjamin Berg <bberg@redhat.com>
73b847
Date: Mon, 2 Dec 2019 17:02:07 +0100
73b847
Subject: [PATCH 051/181] Fix indentation issues using newer uncrustify
73b847
73b847
Seems like the older uncrustify versions did not find these indentation
73b847
issues. Fix them.
73b847
73b847
Old versions of uncrustify will leave things as is, so this is not a
73b847
problem if developers are using an old version of uncrustify.
73b847
---
73b847
 libfprint/drivers/vfs301_proto.c | 2 +-
73b847
 libfprint/fpi-print.h            | 2 +-
73b847
 2 files changed, 2 insertions(+), 2 deletions(-)
73b847
73b847
diff --git a/libfprint/drivers/vfs301_proto.c b/libfprint/drivers/vfs301_proto.c
73b847
index 103e890..84e2318 100644
73b847
--- a/libfprint/drivers/vfs301_proto.c
73b847
+++ b/libfprint/drivers/vfs301_proto.c
73b847
@@ -498,7 +498,7 @@ vfs301_proto_peek_event (FpDeviceVfs301 *dev)
73b847
     usb_recv (dev, e1, l1, NULL, &error); \
73b847
     usb_recv (dev, e2, l2, NULL, NULL); \
73b847
     if (g_error_matches (error, G_USB_DEVICE_ERROR, G_USB_DEVICE_ERROR_TIMED_OUT)) \
73b847
-    usb_recv(dev, e1, l1, NULL, NULL); \
73b847
+    usb_recv (dev, e1, l1, NULL, NULL); \
73b847
   }
73b847
 
73b847
 static void
73b847
diff --git a/libfprint/fpi-print.h b/libfprint/fpi-print.h
73b847
index fe07c26..94670a0 100644
73b847
--- a/libfprint/fpi-print.h
73b847
+++ b/libfprint/fpi-print.h
73b847
@@ -43,7 +43,7 @@ gboolean fpi_print_add_from_image (FpPrint *print,
73b847
                                    GError **error);
73b847
 
73b847
 FpiMatchResult fpi_print_bz3_match (FpPrint * template,
73b847
-                                    FpPrint *print,
73b847
+                                    FpPrint * print,
73b847
                                     gint bz3_threshold,
73b847
                                     GError **error);
73b847
 
73b847
-- 
73b847
2.24.1
73b847