strip is generally unnecessary


git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@567 59561ff5-6e30-0410-9f3c-9617f08c8826
diff --git a/skeletons/NativeInteger.c b/skeletons/NativeInteger.c
index 159d00d..dd5c3e1 100644
--- a/skeletons/NativeInteger.c
+++ b/skeletons/NativeInteger.c
@@ -147,9 +147,9 @@
 	uint8_t buf[sizeof(int)];
 	uint8_t *p;
 
-	/* Prepare fake INTEGER */
+	/* Prepare a fake INTEGER */
 	for(p = buf + sizeof(buf) - 1; p >= buf; p--, Int >>= 8)
-		*p = Int & 0xff;
+		*p = Int;
 
 	tmp.buf = buf;
 	tmp.size = sizeof(buf);