[xiph-commits] r15285 - icecast/trunk/shout-python
brendan at svn.xiph.org
brendan at svn.xiph.org
Wed Sep 10 00:40:24 PDT 2008
Author: brendan
Date: 2008-09-10 00:40:24 -0700 (Wed, 10 Sep 2008)
New Revision: 15285
Modified:
icecast/trunk/shout-python/shout.c
Log:
More correct update to current PyDict_Next API
Modified: icecast/trunk/shout-python/shout.c
===================================================================
--- icecast/trunk/shout-python/shout.c 2008-09-10 07:39:23 UTC (rev 15284)
+++ icecast/trunk/shout-python/shout.c 2008-09-10 07:40:24 UTC (rev 15285)
@@ -439,7 +439,7 @@
PyObject* val;
const char* skey;
const char* sval;
- ssize_t i = 0;
+ Py_ssize_t i = 0;
int rc;
if (!(metadata = shout_metadata_new())) {
@@ -577,7 +577,7 @@
PyObject* val;
const char* skey;
const char* sval;
- ssize_t i = 0;
+ Py_ssize_t i = 0;
int rc;
if (!PyDict_Check(v)) {
More information about the commits
mailing list