Skip to content
Snippets Groups Projects
Commit 1d01446e authored by Sven Gestegård Robertz's avatar Sven Gestegård Robertz
Browse files

(partial) cleanup

parent 2f426104
No related branches found
No related tags found
No related merge requests found
......@@ -199,6 +199,7 @@ static int decode_type_binding(struct labcomm_decoder *d, int kind)
out:
return result;
}
#ifdef OLD_TYPEDEF_DECODING_TEST_CODE
static int decode_type_def(struct labcomm_decoder *d, int kind){
int i, remote_index, result;
char *name;
......@@ -241,6 +242,7 @@ free_signature_name:
out:
return result;
}
#endif
static int decode_sample_def_or_ref(struct labcomm_decoder *d, int kind)
{
......@@ -445,8 +447,12 @@ int labcomm_decoder_decode_one(struct labcomm_decoder *d)
} else if (remote_index == LABCOMM_TYPE_DEF) {
result = decode_and_handle(d, d, remote_index);
if(result == -ENOENT) {
printf("*** no handler for typedef...");
//No handler for typedefs, skip
#ifdef OLD_TYPEDEF_DECODING_TEST_CODE
result = decode_type_def(d, LABCOMM_TYPE_DEF);
#else
result = decoder_skip(d, length, remote_index);
#endif
}
} else if (remote_index == LABCOMM_TYPE_BINDING) {
result = decode_type_binding(d, LABCOMM_TYPE_BINDING);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment