diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-01-23 16:52:01 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-01-23 16:52:01 +0100 |
commit | 2c02d3843a103826a3eb44357eaab09b7deb256b (patch) | |
tree | 73ba1097bf191846c56a304cdeb1126d311bae89 /src/blowfish.c | |
parent | c2a60ae10e7badad9186de59a9994fc8c9f539e0 (diff) | |
download | vim-git-2c02d3843a103826a3eb44357eaab09b7deb256b.tar.gz |
patch 8.2.0145: using #error for compilation errors should be OK nowv8.2.0145
Problem: Using #error for compilation errors should be OK now.
Solution: Use #error. (Ken Takata, closes #5299)
Diffstat (limited to 'src/blowfish.c')
-rw-r--r-- | src/blowfish.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/blowfish.c b/src/blowfish.c index a73b3b6c5..af5e2fc00 100644 --- a/src/blowfish.c +++ b/src/blowfish.c @@ -40,8 +40,7 @@ typedef union { # ifdef HAVE_CONFIG_H // in configure.ac AC_C_BIGENDIAN() defines WORDS_BIGENDIAN when needed # else - error! - Please change this code to define WORDS_BIGENDIAN for big-endian machines. +# error Please change this code to define WORDS_BIGENDIAN for big-endian machines. # endif #endif |