diff options
author | Steve Hay <SteveHay@planit.com> | 2006-08-30 15:57:13 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2006-08-30 15:57:13 +0000 |
commit | dd01f9565a8422cddb97f75e3262d9a6a80ae712 (patch) | |
tree | dc422827a63c81d27fae07e3224c17bc8e7a47c5 /win32/fcrypt.c | |
parent | 5d477a6df415688392cecb2d16fade0065706d72 (diff) | |
download | perl-dd01f9565a8422cddb97f75e3262d9a6a80ae712.tar.gz |
Silence some more Borland compiler warnings
(See: http://www.nntp.perl.org/group/perl.daily-build.reports/40471)
- Change the cryptic pragma warn strings into numbers that are more
easily recognized, and add a new one (8027).
- Add a similar pragma warn line to fcrypt.c, which doesn't use
win32.h.
p4raw-id: //depot/perl@28769
Diffstat (limited to 'win32/fcrypt.c')
-rw-r--r-- | win32/fcrypt.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/win32/fcrypt.c b/win32/fcrypt.c index 4c9f2733f6..ff132d338d 100644 --- a/win32/fcrypt.c +++ b/win32/fcrypt.c @@ -9,6 +9,10 @@ * eay@psych.psy.uq.oz.au */ +#if defined(__BORLANDC__) +#pragma warn -8004 /* "'foo' is assigned a value that is never used" */ +#endif + typedef unsigned char des_cblock[8]; typedef struct des_ks_struct |