summaryrefslogtreecommitdiff
path: root/sdk-basic-tutorial-debugging-tools.md
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2016-06-05 20:58:09 -0400
committerThibault Saunier <tsaunier@gnome.org>2016-06-05 21:16:51 -0400
commit43a2465744d776ad5c181897e85553c8f9907b0d (patch)
tree633d6af8b0fd6c5ee964046b6af01c8766b6a07a /sdk-basic-tutorial-debugging-tools.md
parentc26379435d2baa57505f928c7b0cd263a37fa36f (diff)
Fix code block language tagging
Diffstat (limited to 'sdk-basic-tutorial-debugging-tools.md')
-rw-r--r--sdk-basic-tutorial-debugging-tools.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdk-basic-tutorial-debugging-tools.md b/sdk-basic-tutorial-debugging-tools.md
index 4e5c160..365ed6c 100644
--- a/sdk-basic-tutorial-debugging-tools.md
+++ b/sdk-basic-tutorial-debugging-tools.md
@@ -157,7 +157,7 @@ as the Debug category in the output log).
To change the category to something more meaningful, add these two lines
at the top of your code:
-``` lang=c
+``` c
GST_DEBUG_CATEGORY_STATIC (my_category);
#define GST_CAT_DEFAULT my_category
```
@@ -165,7 +165,7 @@ GST_DEBUG_CATEGORY_STATIC (my_category);
And then this one after you have initialized GStreamer with
`gst_init()`:
-``` lang=c
+``` c
GST_DEBUG_CATEGORY_INIT (my_category, "my category", 0, "This is my very own");
```