diff options
| author | Jochen Dolze <vdr@dolze.de> | 2010-07-08 21:43:23 +0200 |
|---|---|---|
| committer | Jochen Dolze <vdr@dolze.de> | 2010-07-08 21:43:23 +0200 |
| commit | 800fdfef53335279b99db9118f6b2972c957376b (patch) | |
| tree | 225031732d25db206581918bfd8354c1cf5c0c2c /plugin/status.h | |
| parent | 0f47971de0782234b534ec623203b56684d80c52 (diff) | |
| download | vdr-plugin-markad-800fdfef53335279b99db9118f6b2972c957376b.tar.gz vdr-plugin-markad-800fdfef53335279b99db9118f6b2972c957376b.tar.bz2 | |
Corrected info/info.vdr will now be saved
Added compatibility for GCC3.x
Diffstat (limited to 'plugin/status.h')
| -rw-r--r-- | plugin/status.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugin/status.h b/plugin/status.h index 909547f..75f39ff 100644 --- a/plugin/status.h +++ b/plugin/status.h @@ -10,7 +10,11 @@ #include <vdr/status.h> #include "setup.h" +#if __GNUC__ > 3 #define UNUSED(v) UNUSED_ ## v __attribute__((unused)) +#else +#define UNUSED(x) x +#endif struct recs { |
