[pypy-commit] cffi default: Fix a warning.

arigo noreply at buildbot.pypy.org
Fri Mar 29 23:42:47 CET 2013


Author: Armin Rigo <arigo at tunes.org>
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);


More information about the pypy-commit mailing list