summaryrefslogtreecommitdiff
path: root/pfinet/timer-emul.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-05-05 03:25:53 +0000
committerRoland McGrath <roland@gnu.org>2002-05-05 03:25:53 +0000
commit00d0cd8fc013df91892dc4894d63eb9322fc46fb (patch)
treef8c92a617c5191d07fbb2be2dbdaa4d88b3ed2f2 /pfinet/timer-emul.c
parent2633c372b3809d9b5f428a4016e207b4bc3adc16 (diff)
2002-05-03 Roland McGrath <roland@frob.com>
* timer-emul.c (timer_function): Add a return stmt.
Diffstat (limited to 'pfinet/timer-emul.c')
-rw-r--r--pfinet/timer-emul.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pfinet/timer-emul.c b/pfinet/timer-emul.c
index 32d1fb2d..6eb20bc4 100644
--- a/pfinet/timer-emul.c
+++ b/pfinet/timer-emul.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1995,96,2000 Free Software Foundation, Inc.
+ Copyright (C) 1995,96,2000,02 Free Software Foundation, Inc.
Written by Michael I. Bushnell, p/BSG.
This file is part of the GNU Hurd.
@@ -77,6 +77,8 @@ timer_function (int this_is_a_pointless_variable_with_a_rather_long_name)
(*tp->function) (tp->data);
}
}
+
+ return 0;
}