Skip to content
Snippets Groups Projects
Commit bac9b6c9 authored by Guido Gunther's avatar Guido Gunther :zzz:
Browse files

PhoshLockscreen: Fix missing loop initialization

parent 743090e1
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ keypad_update_labels (PhoshLockscreen *self)
len = strlen (number);
dots = pos = g_malloc0 (len * 3 + 1);
g_return_if_fail (dots);
for (int i; i < len; i++)
for (int i = 0; i < len; i++)
pos = g_stpcpy (pos, "●");
gtk_label_set_text (GTK_LABEL (priv->lbl_keypad), dots);
gtk_label_set_label (GTK_LABEL (priv->lbl_unlock_status), _("Enter PIN to unlock"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment