Changeset 3593
- Timestamp:
- 08/23/08 19:46:22 (3 months ago)
- Files:
-
- 1 modified
-
format-plugins/vformat/tools/vconvert.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
format-plugins/vformat/tools/vconvert.c
r3564 r3593 273 273 } 274 274 275 fprintf(stderr, "Cannot convert objtype %s. Unable to find a converter\n", osync_objformat_get_name(sourceformat));275 fprintf(stderr, "Cannot convert format \"%s\". Unable to find a converter\n", osync_objformat_get_name(sourceformat)); 276 276 out: 277 277 return targetformat; … … 361 361 362 362 // just setup a dummyformat to complete data for osync_data_new 363 OSyncObjFormat *dummyformat = osync_ objformat_new("plain", "data", &error);363 OSyncObjFormat *dummyformat = osync_format_env_find_objformat(format_env, "plain"); 364 364 365 365 if (!(data = osync_data_new(buffer, size, dummyformat, &error))) { … … 368 368 369 369 osync_change_set_data(change, data); 370 371 osync_objformat_unref(dummyformat);372 370 373 371 // detect source and target xmlformat
