Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r1206:c6a699d27cab
Date: 2013-03-29 23:42 +0100
http://bitbucket.org/cffi/cffi/changeset/c6a699d27cab/

Log:    Fix a warning.

diff --git a/demo/_curses.py b/demo/_curses.py
--- a/demo/_curses.py
+++ b/demo/_curses.py
@@ -25,7 +25,7 @@
 int tigetflag(char *);
 int tigetnum(char *);
 char *tigetstr(char *);
-char *tparm (char *, ...);
+char *tparm (const char *, ...);
 
 int cbreak(void);
 int nocbreak(void);
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to