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