Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • variable.c

    r94b9ee0 r7dcef03  
    10381038CALLER_OWN char *owl_variable_bool_get_tostring_default(const owl_variable *v, void *dummy)
    10391039{
    1040   return g_strdup(owl_variable_get_bool(v) ? "on" : "off");
     1040  bool val = owl_variable_get_bool(v);
     1041  if (val == 0) {
     1042    return g_strdup("off");
     1043  } else if (val == 1) {
     1044    return g_strdup("on");
     1045  } else {
     1046    return g_strdup("<invalid>");
     1047  }
    10411048}
    10421049
Note: See TracChangeset for help on using the changeset viewer.