aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/timers
diff options
context:
space:
mode:
authorMahesh Khanwalkar <maheshkhanwalkar@gmail.com>2016-02-13 19:05:31 -0500
committerJonathan Corbet <corbet@lwn.net>2016-02-17 14:09:43 -0700
commitf0cd147e61f2b840b0687a407c2652687532644e (patch)
treecdb204a675d00c0e6d798685ec578834867aee0b /Documentation/timers
parentDocumentation: Chinese translation of arm64/silicon-errata.txt (diff)
downloadlinux-dev-f0cd147e61f2b840b0687a407c2652687532644e.tar.xz
linux-dev-f0cd147e61f2b840b0687a407c2652687532644e.zip
Documentation: Fix int/unsigned int comparison
Signed int - unsigned int comparison fixed in mpssd, prctl, ptp, and timers in Documentation. In places where 'int argc' and 'const char **argv' are not used, they are replaced with void Documentation/mic/mpssd/mpssd.c: Fixed comparison in sum_iovec_len and disp_iovec Documentation/prctl/disable-tsc-ctxt-sw-stress-test.c: main signature changed to void, as parameters 'argc' and 'argv' are never used Documentation/prctl/disable-tsc-on-off-stress-test.c: main signature changed to void Documentation/prctl/disable-tsc-test.c: main signature changed to void Documentation/ptp/testptp.c: Sign comparison fix Documentation/timers/hpet_example.c: Sign comparision fix Signed-off-by: Mahesh Khanwalkar <maheshkhanwalkar@gmail.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/timers')
-rw-r--r--Documentation/timers/hpet_example.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/timers/hpet_example.c b/Documentation/timers/hpet_example.c
index 9a3e7012c190..3ab4993d85e0 100644
--- a/Documentation/timers/hpet_example.c
+++ b/Documentation/timers/hpet_example.c
@@ -49,7 +49,7 @@ struct hpet_command {
int
main(int argc, const char ** argv)
{
- int i;
+ unsigned int i;
argc--;
argv++;