Author: duncan
Date: Mon Sep 25 09:58:59 2006
New Revision: 1897

Modified:
   branches/mmpython-0-4/mmpython/disc/ifomodule.c
   branches/mmpython-0-4/mmpython/version.py

Log:
Updated version; removed compile warning

Modified: branches/mmpython-0-4/mmpython/disc/ifomodule.c
==============================================================================
--- branches/mmpython-0-4/mmpython/disc/ifomodule.c     (original)
+++ branches/mmpython-0-4/mmpython/disc/ifomodule.c     Mon Sep 25 09:58:59 2006
@@ -30,7 +30,7 @@
 };
 
 
-void initifoparser() {
+void initifoparser(void) {
    (void) Py_InitModule("ifoparser", IfoMethods);
 }
 
@@ -40,7 +40,7 @@
 
 static PyObject *ifoinfo_open(PyObject *self, PyObject *args) {
   tt_srpt_t *tt_srpt;
-  int i, ch, gotopt = -1, dochapters = -1;
+  //int i, ch, gotopt = -1, dochapters = -1;
   char *dvddevice;
 
   if (!PyArg_ParseTuple(args, "s", &dvddevice))
@@ -74,7 +74,7 @@
 
   tt_srpt_t *tt_srpt;
   ifo_handle_t *vtsfile;
-  int vtsnum, ttnnum, j;
+  int vtsnum, ttnnum;
   long playtime;
 
   if (!PyArg_ParseTuple(args, "i", &i))
@@ -150,6 +150,8 @@
 
     return Py_BuildValue("(s)", language);
   }
+  /* should never get here */
+  return Py_BuildValue("(s)", "");
 }
 
 

Modified: branches/mmpython-0-4/mmpython/version.py
==============================================================================
--- branches/mmpython-0-4/mmpython/version.py   (original)
+++ branches/mmpython-0-4/mmpython/version.py   Mon Sep 25 09:58:59 2006
@@ -2,7 +2,7 @@
 # for the program using this lib if it's an up-to-date version
 
 # "offical" version of mmpython
-VERSION = '0.4.9'
+VERSION = '0.4.10'
 
 # latest major change (date as integer)
 CHANGED = 20040629

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to