]> sjero.net Git - wget/commitdiff
[svn] Make run_with_timeout align with its declaration in utils.h
authormicah <devnull@localhost>
Mon, 27 Aug 2007 20:27:30 +0000 (13:27 -0700)
committermicah <devnull@localhost>
Mon, 27 Aug 2007 20:27:30 +0000 (13:27 -0700)
src/ChangeLog
src/utils.c

index 59e5bd9984460a16052e4bffc85f2b7ab9223304..7de71b35a536da047afe474027447632130823c9 100644 (file)
@@ -10,6 +10,8 @@
        * main.c: Include all the static function definitions in the
        "#ifndef TESTING" clause, leaving just the definitions for
        exec_name (not set), and opt.
+       * utils.c (run_with_timeout): Now returns bool, to align with
+       declaration in utils.h.
 
 2007-08-27  Micah Cowan  <micah@cowan.name>
 
index 99d1ed2d457f46d3b308ea8ddef6a4ffb9bf04d7..0a222d997925fb8b5e4538d58ab3e825ee853032 100644 (file)
@@ -1816,7 +1816,7 @@ run_with_timeout (double timeout, void (*fun) (void *), void *arg)
    define it under Windows, because Windows has its own version of
    run_with_timeout that uses threads.  */
 
-int
+bool
 run_with_timeout (double timeout, void (*fun) (void *), void *arg)
 {
   fun (arg);