diff options
author | Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> | 2013-01-04 17:03:04 +0100 |
---|---|---|
committer | Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> | 2013-01-04 17:03:04 +0100 |
commit | af551ed793e9c6a4798012fa73ca5d3846cad165 (patch) | |
tree | c1c02a3186f984b17c813f4801ff36b787c2d436 | |
parent | ee96e2e89d95e1b144f986a84d46913182d41a8a (diff) | |
download | vdr-plugin-inputdev-af551ed793e9c6a4798012fa73ca5d3846cad165.tar.gz vdr-plugin-inputdev-af551ed793e9c6a4798012fa73ca5d3846cad165.tar.bz2 |
udevhelper: fixed minor warning
-rw-r--r-- | udevhelper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udevhelper.c b/udevhelper.c index 3c4bc45..0c1402e 100644 --- a/udevhelper.c +++ b/udevhelper.c @@ -74,7 +74,7 @@ int main(int argc, char *argv[]) return EX_OSERR; } - if (l != strlen(cmd)) { + if ((size_t)l != strlen(cmd)) { fprintf(stderr, "not all data sent\n"); return EX_OSERR; } |