]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/base/lib_delch.c
ncurses 6.0 - patch 20160618
[ncurses.git] / ncurses / base / lib_delch.c
index 0c30f2d93c1ba49f1102dfb42a23128a6bb54a44..64c9da73edf85f0d67a3d4591698f7840e36c3c4 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright (c) 1998,2000,2001 Free Software Foundation, Inc.              *
+ * Copyright (c) 1998-2001,2009 Free Software Foundation, Inc.              *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
 
 #include <curses.priv.h>
 
-MODULE_ID("$Id: lib_delch.c,v 1.12 2001/12/19 01:06:09 tom Exp $")
+MODULE_ID("$Id: lib_delch.c,v 1.13 2009/10/24 22:32:47 tom Exp $")
 
 NCURSES_EXPORT(int)
 wdelch(WINDOW *win)
 {
     int code = ERR;
 
-    T((T_CALLED("wdelch(%p)"), win));
+    T((T_CALLED("wdelch(%p)"), (void *) win));
 
     if (win) {
        NCURSES_CH_T blank = win->_nc_bkgd;