mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
info: revert two of the changes
It only needed for the non constant string.
This commit is contained in:
parent
084bbe3921
commit
cb7a8e8b61
1 changed files with 5 additions and 5 deletions
|
@ -1645,11 +1645,11 @@ _gst_debug_dump_mem (GstDebugCategory * cat, const gchar * file,
|
|||
{
|
||||
guint off = 0;
|
||||
|
||||
gst_debug_log ((cat), GST_LEVEL_MEMDUMP, file, func, line, obj, "%s", "-----"
|
||||
"----------------------------------------------------------------------");
|
||||
gst_debug_log ((cat), GST_LEVEL_MEMDUMP, file, func, line, obj, "--------"
|
||||
"-------------------------------------------------------------------");
|
||||
|
||||
if (msg != NULL && *msg != '\0') {
|
||||
gst_debug_log ((cat), GST_LEVEL_MEMDUMP, file, func, line, obj, "%s", msg);
|
||||
gst_debug_log ((cat), GST_LEVEL_MEMDUMP, file, func, line, obj, msg);
|
||||
}
|
||||
|
||||
while (off < length) {
|
||||
|
@ -1661,8 +1661,8 @@ _gst_debug_dump_mem (GstDebugCategory * cat, const gchar * file,
|
|||
off += 16;
|
||||
}
|
||||
|
||||
gst_debug_log ((cat), GST_LEVEL_MEMDUMP, file, func, line, obj, "%s", "-----"
|
||||
"----------------------------------------------------------------------");
|
||||
gst_debug_log ((cat), GST_LEVEL_MEMDUMP, file, func, line, obj, "--------"
|
||||
"-------------------------------------------------------------------");
|
||||
}
|
||||
|
||||
#else /* !GST_DISABLE_GST_DEBUG */
|
||||
|
|
Loading…
Reference in a new issue