Fixes tf_select_table[][] (missing commas)
diff --git a/libcelt/celt.c b/libcelt/celt.c
index 4c60cf6..1728f31 100644
--- a/libcelt/celt.c
+++ b/libcelt/celt.c
@@ -427,9 +427,9 @@
 
 static const signed char tf_select_table[4][8] = {
       {0, -1, 0, -1,    0,-1, 0,-1},
-      {0, -1, 0, -2,    1, 0, 1 -1},
-      {0, -2, 0, -3,    2, 0, 1 -1},
-      {0, -2, 0, -3,    2, 0, 1 -1},
+      {0, -1, 0, -2,    1, 0, 1,-1},
+      {0, -2, 0, -3,    2, 0, 1,-1},
+      {0, -2, 0, -3,    2, 0, 1,-1},
 };
 
 static celt_word32 l1_metric(const celt_norm *tmp, int N, int LM, int width)