commit 476dc684ebb1cae602bb5658e139706fd9b76ded
parent 667a3121702bd86d385ccd706e054422b126dd26
Author: Colin Leroy <colin@colino.net>
Date: Thu, 11 Feb 2016 10:27:36 +0100
Fix indentation, sorry
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/prefs_gtk.c b/src/prefs_gtk.c
@@ -687,10 +687,10 @@ void prefs_set_entry(PrefParam *pparam)
break;
case P_PASSWORD:
str = (gchar **)pparam->data;
- decrypted_pass = password_decrypt(*str, NULL);
+ decrypted_pass = password_decrypt(*str, NULL);
gtk_entry_set_text(GTK_ENTRY(*pparam->widget),
- (decrypted_pass != NULL ? decrypted_pass : ""));
- g_free(decrypted_pass);
+ (decrypted_pass != NULL ? decrypted_pass : ""));
+ g_free(decrypted_pass);
break;
default:
g_warning("Invalid PrefType for GtkEntry widget: %d",