From 4c0265d921a05f99ee1c7c5b891fad0fe8d65495 Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Wed, 5 Jul 2017 11:44:22 -0500 Subject: [PATCH] Work around ORCA/C bug. --- md5sum.c | 2 +- sha1sum.c | 2 +- sha256sum.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/md5sum.c b/md5sum.c index 64d200e..6d3f1d5 100644 --- a/md5sum.c +++ b/md5sum.c @@ -19,7 +19,7 @@ #include #include "md5.h" -unsigned char buf[0x8000]; +unsigned char buf[0x8000ul]; int main(int argc, char **argv) { struct md5_context ctx; diff --git a/sha1sum.c b/sha1sum.c index 03337aa..fea2c04 100644 --- a/sha1sum.c +++ b/sha1sum.c @@ -19,7 +19,7 @@ #include #include "sha1.h" -unsigned char buf[0x8000]; +unsigned char buf[0x8000ul]; int main(int argc, char **argv) { struct sha1_context ctx; diff --git a/sha256sum.c b/sha256sum.c index a1d335d..dbe87c2 100644 --- a/sha256sum.c +++ b/sha256sum.c @@ -19,7 +19,7 @@ #include #include "sha256.h" -unsigned char buf[0x8000]; +unsigned char buf[0x8000ul]; int main(int argc, char **argv) { struct sha256_context ctx;