X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fsgiplay.c;h=e3ca2faa20714eb3a7503a144cfdaa16739249af;hb=975655e6b5b1526ee82b159b3eadf69888c42090;hp=222a3e607f8d676ed3216bfb1113e2be46b48fa7;hpb=d3dd71489ab2730d79536ebdc3c56cca82766e9d;p=chise%2Fxemacs-chise.git- diff --git a/src/sgiplay.c b/src/sgiplay.c index 222a3e6..e3ca2fa 100644 --- a/src/sgiplay.c +++ b/src/sgiplay.c @@ -363,7 +363,7 @@ drain_audio_port (AudioContext ac) static int st_ulaw_to_linear (int u) { - static CONST short table[] = {0,132,396,924,1980,4092,8316,16764}; + static const short table[] = {0,132,396,924,1980,4092,8316,16764}; int u1 = ~u; short exponent = (u1 >> 4) & 0x07; int mantissa = u1 & 0x0f;