Write literal byte more clearly
diff --git a/library/sha256.c b/library/sha256.c
index dedc6b8..39444bc 100644
--- a/library/sha256.c
+++ b/library/sha256.c
@@ -703,7 +703,7 @@
 
         if( j == 5 || j == 6 )
         {
-            memset( buf, '\xAA', buflen = 131 );
+            memset( buf, 0xAA, buflen = 131 );
             sha256_hmac_starts( &ctx, buf, buflen, k );
         }
         else