Changeset e488ec5 for functions.c
- Timestamp:
- Jul 27, 2010, 10:50:36 PM (14 years ago)
- Branches:
- master, release-1.10, release-1.7, release-1.8, release-1.9
- Children:
- 35a30f9
- Parents:
- f93cc34 (diff), 26ad412 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
rd296c9a re488ec5 1177 1177 return; 1178 1178 1179 file = fopen(owl_global_get_debug_file(&g), "a");1179 file = owl_global_get_debug_file_handle(&g); 1180 1180 if (!file) /* XXX should report this */ 1181 1181 return; … … 1187 1187 vfprintf(file, fmt, ap); 1188 1188 putc('\n', file); 1189 f close(file);1189 fflush(file); 1190 1190 1191 1191 va_end(ap);
Note: See TracChangeset
for help on using the changeset viewer.