File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1411,9 +1411,9 @@ read_setting_boolean (GKeyFile *kf,
1411
1411
const gchar * key ,
1412
1412
gpointer value )
1413
1413
{
1414
- gboolean * bool = value ;
1414
+ gboolean * boolean = value ;
1415
1415
1416
- * bool = utils_get_setting_boolean (kf , group , key , * bool );
1416
+ * boolean = utils_get_setting_boolean (kf , group , key , * boolean );
1417
1417
}
1418
1418
1419
1419
static void
@@ -1422,9 +1422,9 @@ write_setting_boolean (GKeyFile *kf,
1422
1422
const gchar * key ,
1423
1423
gconstpointer value )
1424
1424
{
1425
- const gboolean * bool = value ;
1425
+ const gboolean * boolean = value ;
1426
1426
1427
- g_key_file_set_boolean (kf , group , key , * bool );
1427
+ g_key_file_set_boolean (kf , group , key , * boolean );
1428
1428
}
1429
1429
1430
1430
/* loads @filename in @kf and return %FALSE if failed, emitting a warning
You can’t perform that action at this time.
0 commit comments