[gnome-settings-daemon/wip/claudio/CI: 2/2] Try printf instead of g_print
- From: Benjamin Berg <bberg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-settings-daemon/wip/claudio/CI: 2/2] Try printf instead of g_print
- Date: Tue, 5 Feb 2019 18:41:56 +0000 (UTC)
commit e1c70426be9997dd6178aaad7294b939f19237fd
Author: Benjamin Berg <bberg redhat com>
Date: Tue Feb 5 19:37:34 2019 +0100
Try printf instead of g_print
plugins/power/gsd-power-enums-update.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/plugins/power/gsd-power-enums-update.c b/plugins/power/gsd-power-enums-update.c
index b44aa964..caf40b68 100644
--- a/plugins/power/gsd-power-enums-update.c
+++ b/plugins/power/gsd-power-enums-update.c
@@ -10,7 +10,7 @@ output_enum_values (GType class_type)
eclass = G_ENUM_CLASS (g_type_class_peek (class_type));
for (i = 0; i < eclass->n_values; i++) {
GEnumValue *value = &(eclass->values[i]);
- g_print ("%s = %d;\n", value->value_name, value->value);
+ printf ("%s = %d;\n", value->value_name, value->value);
}
}
@@ -23,7 +23,7 @@ output_flags_values (GType class_type)
fclass = G_FLAGS_CLASS (g_type_class_peek (class_type));
for (i = 0; i < fclass->n_values; i++) {
GFlagsValue *value = &(fclass->values[i]);
- g_print ("%s = %d;\n", value->value_name, value->value);
+ printf ("%s = %d;\n", value->value_name, value->value);
}
}
@@ -34,7 +34,7 @@ main (int argc, char **argv)
* cause some checks to fail when running the clang memory
* sanitizer.
*/
- g_setenv ("CHARSET", "UTF-8", TRUE);
+ //g_setenv ("CHARSET", "UTF-8", TRUE);
g_type_class_ref (GSD_POWER_TYPE_INHIBITOR_FLAG);
g_type_class_ref (GSD_POWER_TYPE_PRESENCE_STATUS);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]