Skip to content
Snippets Groups Projects

Resolve "server_id should not be optional in adhoc_storage"

38 files
+ 169
167
Compare changes
  • Side-by-side
  • Inline
Files
38
@@ -68,11 +68,11 @@ main(int argc, char* argv[]) {
100, false);
assert(ctx);
const char* user_id = "adhoc_storage_42";
const char* name = "adhoc_storage_42";
ADM_storage_t adhoc_storage;
ADM_return_t ret =
ADM_register_adhoc_storage(server, user_id, ctx, &adhoc_storage);
ADM_register_adhoc_storage(server, name, ctx, &adhoc_storage);
if(ret != ADM_SUCCESS) {
fprintf(stdout, "ADM_register_adhoc_storage() remote procedure not "
Loading