Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/curses-v3]: src/lib/libcurses Get the argumesnts to wborder() the correc...
details: https://anonhg.NetBSD.org/src/rev/7d0ed498b7e8
branches: curses-v3
changeset: 479977:7d0ed498b7e8
user: jdc <jdc%NetBSD.org@localhost>
date: Thu Mar 16 21:47:16 2000 +0000
description:
Get the argumesnts to wborder() the correct way round.
diffstat:
lib/libcurses/box.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (25 lines):
diff -r 3c0f62409513 -r 7d0ed498b7e8 lib/libcurses/box.c
--- a/lib/libcurses/box.c Thu Mar 16 21:30:35 2000 +0000
+++ b/lib/libcurses/box.c Thu Mar 16 21:47:16 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: box.c,v 1.10.6.2 2000/03/05 23:26:33 jdc Exp $ */
+/* $NetBSD: box.c,v 1.10.6.3 2000/03/16 21:47:16 jdc Exp $ */
/*
* Copyright (c) 1981, 1993, 1994
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)box.c 8.2 (Berkeley) 5/4/94";
#else
-__RCSID("$NetBSD: box.c,v 1.10.6.2 2000/03/05 23:26:33 jdc Exp $");
+__RCSID("$NetBSD: box.c,v 1.10.6.3 2000/03/16 21:47:16 jdc Exp $");
#endif
#endif /* not lint */
@@ -54,5 +54,5 @@
WINDOW *win;
chtype vert, hor;
{
- return (wborder (win, hor, hor, vert, vert, 0, 0, 0, 0));
+ return (wborder (win, vert, vert, hor, hor, 0, 0, 0, 0));
}
Home |
Main Index |
Thread Index |
Old Index