summaryrefslogtreecommitdiff
path: root/libs/audiographer/private/gdither/gdither.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/audiographer/private/gdither/gdither.cc')
-rw-r--r--libs/audiographer/private/gdither/gdither.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/audiographer/private/gdither/gdither.cc b/libs/audiographer/private/gdither/gdither.cc
index fe9ecc655a..d2a237eb74 100644
--- a/libs/audiographer/private/gdither/gdither.cc
+++ b/libs/audiographer/private/gdither/gdither.cc
@@ -226,7 +226,7 @@ inline static void gdither_innner_loop(const GDitherType dt,
switch (bit_depth) {
case GDither8bit:
- o8[i] = (u_int8_t) (clamped * post_scale);
+ o8[i] = (uint8_t) (clamped * post_scale);
break;
case GDither16bit:
o16[i] = (int16_t) (clamped * post_scale);