mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-08 20:03:34 +02:00
Constify username
Fixes a few warnings on compilation
This commit is contained in:
committed by
Daniel Drake
parent
5d4e23ab32
commit
148b6fc676
@ -25,12 +25,12 @@
|
||||
#include "file_storage.h"
|
||||
|
||||
typedef int (*storage_print_data_save)(struct fp_print_data *data,
|
||||
enum fp_finger finger, char *username);
|
||||
enum fp_finger finger, const char *username);
|
||||
typedef int (*storage_print_data_load)(struct fp_dev *dev,
|
||||
enum fp_finger finger, struct fp_print_data **data, char *username);
|
||||
enum fp_finger finger, struct fp_print_data **data, const char *username);
|
||||
typedef int (*storage_print_data_delete)(struct fp_dev *dev,
|
||||
enum fp_finger finger, char *username);
|
||||
typedef GSList *(*storage_discover_prints)(struct fp_dev *dev, char *username);
|
||||
enum fp_finger finger, const char *username);
|
||||
typedef GSList *(*storage_discover_prints)(struct fp_dev *dev, const char *username);
|
||||
typedef int (*storage_init)(void);
|
||||
typedef int (*storage_deinit)(void);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user