| 288 } |
288 } |
| 289 |
289 |
| 290 int ret = 0; |
290 int ret = 0; |
| 291 CxMapIterator i = cxMapIterator(application_properties); |
291 CxMapIterator i = cxMapIterator(application_properties); |
| 292 cx_foreach(CxMapEntry *, entry, i) { |
292 cx_foreach(CxMapEntry *, entry, i) { |
| 293 fprintf(file, "%.*s = %s\n", (int)entry->key->len, entry->key->data, entry->value); |
293 fprintf(file, "%.*s = %s\n", (int)entry->key->len, (char*)entry->key->data, (char*)entry->value); |
| 294 } |
294 } |
| 295 |
295 |
| 296 cxMapRehash(application_properties); |
296 cxMapRehash(application_properties); |
| 297 |
297 |
| 298 fclose(file); |
298 fclose(file); |