Changeset b27e82f
- Timestamp:
- Mar 25, 2011, 5:33:45 AM (14 years ago)
- Children:
- eaa8f09
- Parents:
- 1a30f05
- git-author:
- Jason Gross <jgross@mit.edu> (11/21/10 21:45:16)
- git-committer:
- Jason Gross <jgross@mit.edu> (03/25/11 05:33:45)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
variable.c
rf25df21 rb27e82f 688 688 } 689 689 if (msg && v->get_tostring_fn) { 690 tostring = v->get_tostring_fn(v, v-> val);690 tostring = v->get_tostring_fn(v, v->get_fn(v)); 691 691 owl_function_makemsg("%s = '%s'", name, tostring); 692 692 g_free(tostring); … … 726 726 v = owl_dict_find_element(d, name); 727 727 if (v == NULL || !v->get_tostring_fn) return NULL; 728 return v->get_tostring_fn(v, v-> val);728 return v->get_tostring_fn(v, v->get_fn(v)); 729 729 } 730 730
Note: See TracChangeset
for help on using the changeset viewer.