diff options
author | David Kalnischkies <david@kalnischkies.de> | 2015-05-09 14:02:59 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2015-05-11 17:22:32 +0200 |
commit | ad5a4ac2bccb04f4aa74aeb2cefa90c79ed4b5e9 (patch) | |
tree | 25b12d04d56030c1b4dea34ca41e1b6a13b78370 /apt-pkg/contrib | |
parent | 98c9c26c123aa1ef6ad01b0bb60c782b920ce3b3 (diff) |
fix macro definition for very old GCC < 3
Git-Dch: Ignore
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r-- | apt-pkg/contrib/macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/macros.h b/apt-pkg/contrib/macros.h index 14541d4d8..2f9c6c269 100644 --- a/apt-pkg/contrib/macros.h +++ b/apt-pkg/contrib/macros.h @@ -89,7 +89,7 @@ #define APT_MUSTCHECK __attribute__((warn_unused_result)) #else #define APT_NONNULL(...) - #define APT_REQRET + #define APT_MUSTCHECK #endif #if APT_GCC_VERSION >= 0x0400 |