gst/gst.override: printf("urlencoded%20space") != printf("%s", "urlencoded%20space")

Original commit message from CVS:
* gst/gst.override: (pygst_debug_log):
printf("urlencoded%20space") != printf("%s", "urlencoded%20space")
Funny how a lot of problems have gone since that's fixed :)
This commit is contained in:
Edward Hervey 2005-08-10 15:06:51 +00:00
parent 8ad2d61eeb
commit 4164682236
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2005-08-10 Edward Hervey <edward@fluendo.com>
* gst/gst.override: (pygst_debug_log):
printf("urlencoded%20space") != printf("%s", "urlencoded%20space")
Funny how a lot of problems have gone since that's fixed :)
2005-08-09 Edward Hervey <edward@fluendo.com>
* gst/gstpad.override: (_wrap_gst_pad_query_position):

View file

@ -239,7 +239,7 @@ pygst_debug_log (PyObject *whatever, PyObject *string, GstDebugLevel level)
filename = PyString_AsString(frame->f_code->co_filename);
lineno = frame->f_code->co_firstlineno;
/* gst_debug_log : category, level, file, function, line, object, format, va_list */
gst_debug_log (GST_CAT_DEFAULT, level, filename, function, lineno, NULL, str);
gst_debug_log (GST_CAT_DEFAULT, level, filename, function, lineno, NULL, "%s", str);
Py_INCREF (Py_None);
return Py_None;
}