X-Git-Url: https://develop.uap-core.de/gitweb/uwplayer.git/blobdiff_plain/5cb490b04836ef624cdd0ba975ee5c2ff2e51a23..01d5015ba093f8c5fdb18b669943c7da6450e72f:/application/properties.c diff --git a/application/properties.c b/application/properties.c index ef2e1b5..52885f0 100644 --- a/application/properties.c +++ b/application/properties.c @@ -248,7 +248,7 @@ int ucx_properties_store(CxMap *map, FILE *file) { value = cx_str(v->value); written = 0; - written += fwrite(v->key->data.bytes, 1, v->key->len, file); + written += fwrite(v->key->data, 1, v->key->len, file); written += fwrite(" = ", 1, 3, file); written += fwrite(value.ptr, 1, value.length, file); written += fwrite("\n", 1, 1, file);