summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gst/printf/vasnprintf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gst/printf/vasnprintf.c b/gst/printf/vasnprintf.c
index 7f3d9e2f2..b40fc092d 100644
--- a/gst/printf/vasnprintf.c
+++ b/gst/printf/vasnprintf.c
@@ -121,6 +121,11 @@ print_long_long (char *buf,
digits = upper;
negative = FALSE;
break;
+ case 'u':
+ base = 10;
+ digits = lower;
+ negative = FALSE;
+ break;
default:
base = 10;
digits = lower;