mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-09 04:13:33 +02:00
Fix integer signedness mismatches
This commit is contained in:
committed by
Benjamin Berg
parent
be5d283a3e
commit
e301779c20
@ -1030,7 +1030,7 @@ static gboolean fprint_device_verify_start (FprintDBusDevice *dbus_dev,
|
||||
g_autoptr(FpPrint) print = NULL;
|
||||
g_autoptr(SessionData) session = NULL;
|
||||
g_autoptr(GError) error = NULL;
|
||||
guint finger_num = finger_name_to_num (finger_name);
|
||||
int finger_num = finger_name_to_num (finger_name);
|
||||
|
||||
if (!_fprint_device_check_claimed (rdev, invocation, STATE_CLAIMED, &error)) {
|
||||
g_dbus_method_invocation_return_gerror (invocation, error);
|
||||
|
||||
Reference in New Issue
Block a user