*** empty log message ***

diff --git a/skeletons/NativeInteger.c b/skeletons/NativeInteger.c
index 2e44eaa..b974ebf 100644
--- a/skeletons/NativeInteger.c
+++ b/skeletons/NativeInteger.c
@@ -241,12 +241,13 @@
 	memset(&tmpint, 0, sizeof tmpint);
 	rval = INTEGER_decode_uper(opt_codec_ctx, td, constraints,
 				   &tmpintptr, pd);
-	if(rval.code == RC_OK)
+	if(rval.code == RC_OK) {
 		if(asn_INTEGER2long(&tmpint, native))
 			rval.code = RC_FAIL;
 		else
 			ASN_DEBUG("NativeInteger %s got value %ld",
 				td->name, *native);
+	}
 	asn_DEF_INTEGER.free_struct(&asn_DEF_INTEGER, &tmpint, 1);
 
 	return rval;