diff options
author | Jochen Dolze <vdr@dolze.de> | 2011-05-24 00:12:30 +0200 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2011-05-24 00:12:30 +0200 |
commit | 956f61c0478bd9e3b3bb16ecd48714e57a69733b (patch) | |
tree | 58a269cb59ec5a61d5611748c8cbd7e72af4a6e0 /command | |
parent | 55141b21b3b6c937614009f76b8340e42a0f50af (diff) | |
download | vdr-plugin-markad-956f61c0478bd9e3b3bb16ecd48714e57a69733b.tar.gz vdr-plugin-markad-956f61c0478bd9e3b3bb16ecd48714e57a69733b.tar.bz2 |
Removed unsupported arch error
Added better PULS4 logo
Diffstat (limited to 'command')
-rw-r--r-- | command/logos/PULS_4_Austria-A16_9-P0.pgm | bin | 14468 -> 19219 bytes | |||
-rw-r--r-- | command/logos/PULS_4_Austria-A16_9-P1.pgm | bin | 0 -> 4817 bytes | |||
-rw-r--r-- | command/logos/PULS_4_Austria-A16_9-P2.pgm | bin | 3587 -> 4817 bytes | |||
-rw-r--r-- | command/markad-standalone.cpp | 3 |
4 files changed, 1 insertions, 2 deletions
diff --git a/command/logos/PULS_4_Austria-A16_9-P0.pgm b/command/logos/PULS_4_Austria-A16_9-P0.pgm Binary files differindex e597ea5..573b282 100644 --- a/command/logos/PULS_4_Austria-A16_9-P0.pgm +++ b/command/logos/PULS_4_Austria-A16_9-P0.pgm diff --git a/command/logos/PULS_4_Austria-A16_9-P1.pgm b/command/logos/PULS_4_Austria-A16_9-P1.pgm Binary files differnew file mode 100644 index 0000000..4c921ab --- /dev/null +++ b/command/logos/PULS_4_Austria-A16_9-P1.pgm diff --git a/command/logos/PULS_4_Austria-A16_9-P2.pgm b/command/logos/PULS_4_Austria-A16_9-P2.pgm Binary files differindex 434345f..934f6aa 100644 --- a/command/logos/PULS_4_Austria-A16_9-P2.pgm +++ b/command/logos/PULS_4_Austria-A16_9-P2.pgm diff --git a/command/markad-standalone.cpp b/command/markad-standalone.cpp index 4096477..47d9eaa 100644 --- a/command/markad-standalone.cpp +++ b/command/markad-standalone.cpp @@ -34,7 +34,6 @@ #include "markad-standalone.h" #include "version.h" -extern int sys_ioprio_set(int which, int who, int ioprio); bool SYSLOG=false; bool LOG2REC=false; cMarkAdStandalone *cmasta=NULL; @@ -55,7 +54,7 @@ static inline int ioprio_set(int which, int who, int ioprio) #define __NR_ioprio_set 1274 #define __NR_ioprio_get 1275 #else -#error "Unsupported arch" + return 0; // just do nothing #endif return syscall(__NR_ioprio_set, which, who, ioprio); } |