Commit 91b729f5 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds

[PATCH] times must be unsigned long

AFS and RXRPC: times must be unsigned long
parent a75d5f43
...@@ -83,7 +83,7 @@ static int kafstimod(void *arg) ...@@ -83,7 +83,7 @@ static int kafstimod(void *arg)
for (;;) { for (;;) {
unsigned long jif; unsigned long jif;
signed long timeout; unsigned long timeout;
/* deal with the server being asked to die */ /* deal with the server being asked to die */
if (kafstimod_die) { if (kafstimod_die) {
......
...@@ -82,7 +82,7 @@ static int krxtimod(void *arg) ...@@ -82,7 +82,7 @@ static int krxtimod(void *arg)
for (;;) { for (;;) {
unsigned long jif; unsigned long jif;
signed long timeout; unsigned long timeout;
/* deal with the server being asked to die */ /* deal with the server being asked to die */
if (krxtimod_die) { if (krxtimod_die) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment