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