mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2026-05-08 05:28:03 +02:00
verify: Constify username
utils/verify.c:191:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
191 | username = "";
| ^
This commit is contained in:
parent
8f75563920
commit
e10417a907
1 changed files with 1 additions and 1 deletions
|
|
@ -171,7 +171,7 @@ int main(int argc, char **argv)
|
|||
GOptionContext *context;
|
||||
GError *err = NULL;
|
||||
DBusGProxy *dev;
|
||||
char *username;
|
||||
const char *username = NULL;
|
||||
|
||||
setlocale (LC_ALL, "");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue