Call onlywind() properly.
authorlum <lum@openbsd.org>
Sat, 10 Oct 2015 08:35:26 +0000 (08:35 +0000)
committerlum <lum@openbsd.org>
Sat, 10 Oct 2015 08:35:26 +0000 (08:35 +0000)
usr.bin/mg/buffer.c
usr.bin/mg/theo.c

index 195b14b..ba0aa6b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: buffer.c,v 1.99 2015/09/26 21:51:58 jasper Exp $      */
+/*     $OpenBSD: buffer.c,v 1.100 2015/10/10 08:35:26 lum Exp $        */
 
 /* This file is in the public domain. */
 
@@ -408,7 +408,7 @@ listbuf_goto_buffer_helper(int f, int n, int only)
        curwp = wp;
 
        if (only)
-               ret = (onlywind(f, n));
+               ret = (onlywind(FFRAND, 1));
        else
                ret = TRUE;
 
index 7296420..bd4d4dc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: theo.c,v 1.146 2015/03/19 21:48:05 bcallah Exp $      */
+/*     $OpenBSD: theo.c,v 1.147 2015/10/10 08:35:26 lum Exp $  */
 /*
  * Copyright (c) 2002 Artur Grabowski <art@openbsd.org>
  * All rights reserved.
@@ -78,7 +78,7 @@ theo(int f, int n)
 
        curbp = bp;
        curwp = wp;
-       onlywind(f, n);
+       (void)onlywind(FFRAND, 1);
 
        return (TRUE);
 }