]> git.eshelyaron.com Git - emacs.git/commitdiff
* process.c (Faccept_process_output): Fix typo in duration.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 21 Sep 2011 20:21:07 +0000 (13:21 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 21 Sep 2011 20:21:07 +0000 (13:21 -0700)
src/process.c

index d604415bdd043db937055cfd7b8ffb01edd0e3d3..ab01728e215e962161d86610ee6ba01ba91c88b4 100644 (file)
@@ -3960,7 +3960,7 @@ Return non-nil if we received any output before the timeout expired.  */)
 
   if (!NILP (seconds))
     {
-      double duration = extract_float (duration);
+      double duration = extract_float (seconds);
       if (0 < duration)
        duration_to_sec_usec (duration, &secs, &usecs);
     }