mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst-libs/gst/pbutils/missing-plugins.c: Add missing separator in PID fallback case.
Original commit message from CVS: * gst-libs/gst/pbutils/missing-plugins.c: (gst_missing_plugin_message_get_installer_detail): Add missing separator in PID fallback case.
This commit is contained in:
parent
fc50d2dc64
commit
e2dbf33a7c
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-08-26 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst-libs/gst/pbutils/missing-plugins.c:
|
||||
(gst_missing_plugin_message_get_installer_detail):
|
||||
Add missing separator in PID fallback case.
|
||||
|
||||
2007-08-24 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
|
||||
* ext/alsa/Makefile.am:
|
||||
|
|
|
@ -422,7 +422,7 @@ gst_missing_plugin_message_get_installer_detail (GstMessage * msg)
|
|||
if (progname) {
|
||||
g_string_append_printf (str, "%s|", progname);
|
||||
} else {
|
||||
g_string_append_printf (str, "pid/%lu", (gulong) getpid ());
|
||||
g_string_append_printf (str, "pid/%lu|", (gulong) getpid ());
|
||||
}
|
||||
|
||||
desc = gst_missing_plugin_message_get_description (msg);
|
||||
|
|
Loading…
Reference in a new issue