summaryrefslogtreecommitdiff
path: root/libs/audiographer
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-07-11 12:05:37 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-07-11 12:05:37 -0400
commit5162181767046a58e8c97194a8bb596871369166 (patch)
treec0427cbd83e26b62f0cc398e3e6d4a7834d3dfc3 /libs/audiographer
parentb9fa882c565e340e0e6f110274e0ac8809f3556d (diff)
Fix some usage of non-standard types for portability
Diffstat (limited to 'libs/audiographer')
-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);