Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gstreamer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolay Sivov <nsivov@codeweavers.com>2021-05-06 22:20:57 +0300
committerNikolay Sivov <nsivov@codeweavers.com>2021-05-06 22:20:57 +0300
commit41ee497b908f89a2ea2f4122e8a16ba86c4a4fc6 (patch)
treef1bc4c3488b259d841c0457e293a0bcb9b24d8d7
parent4ad1c8b7c92d36fb454f7bb83c6ce08364eb7172 (diff)
gstutils: Fix typo in the comment.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/813>
-rw-r--r--gst/gstutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstutils.c b/gst/gstutils.c
index 9a7cca02ec..85433b6865 100644
--- a/gst/gstutils.c
+++ b/gst/gstutils.c
@@ -388,7 +388,7 @@ gst_util_uint64_mul_uint64 (GstUInt64 * c1, GstUInt64 * c0, guint64 arg1,
b0.ll = (guint64) v.l.high * n.l.low;
/* add the high word of a0 to the low words of a1 and b0 using c1 as
- * scrach space to capture the carry. the low word of the result becomes
+ * scratch space to capture the carry. the low word of the result becomes
* the final high word of c0 */
c1->ll = (guint64) c0->l.high + a1.l.low + b0.l.low;
c0->l.high = c1->l.low;