# HG changeset patch # User vitor # Date 1215981522 0 # Node ID 7e51fc7805acd8853630d8607f93cb8b60d2a73c # Parent 4a4a8563de98792307e18ddb129fc16af96aaea0 Do not declare as double a var that only stores a float diff -r 4a4a8563de98 -r 7e51fc7805ac ra288.c --- a/ra288.c Sun Jul 13 20:36:32 2008 +0000 +++ b/ra288.c Sun Jul 13 20:38:42 2008 +0000 @@ -51,8 +51,8 @@ static void decode(Real288_internal *glob, float gain, int cb_coef) { int x, y; - double sum, sumsum; - float buffer[5]; + double sumsum; + float sum, buffer[5]; memmove(glob->sb + 5, glob->sb, 36 * sizeof(*glob->sb));