[llvm-commits] CVS: llvm-test/MultiSource/Applications/JM/lencod/q_matrix.c q_offsets.c

Chris Lattner lattner at cs.uiuc.edu
Tue Feb 14 23:38:49 PST 2006



Changes in directory llvm-test/MultiSource/Applications/JM/lencod:

q_matrix.c updated: 1.1 -> 1.2
q_offsets.c updated: 1.1 -> 1.2
---
Log message:

Fix prototypes to match the definition


---
Diffs of the changes:  (+4 -4)

 q_matrix.c  |    4 ++--
 q_offsets.c |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm-test/MultiSource/Applications/JM/lencod/q_matrix.c
diff -u llvm-test/MultiSource/Applications/JM/lencod/q_matrix.c:1.1 llvm-test/MultiSource/Applications/JM/lencod/q_matrix.c:1.2
--- llvm-test/MultiSource/Applications/JM/lencod/q_matrix.c:1.1	Sat Feb 11 04:33:22 2006
+++ llvm-test/MultiSource/Applications/JM/lencod/q_matrix.c	Wed Feb 15 01:38:36 2006
@@ -14,7 +14,7 @@
 #include "global.h"
 #include "memalloc.h"
 
-extern char *GetConfigFileContent (char *Filename, int error_type);
+extern char *GetConfigFileContent (char *Filename);
 
 #define MAX_ITEMS_TO_PARSE  1000
 
@@ -402,7 +402,7 @@
   if(input->ScalingMatrixPresentFlag)
   {
     printf ("Parsing QMatrix file %s ", input->QmatrixFile);
-    content = GetConfigFileContent(input->QmatrixFile, 0);
+    content = GetConfigFileContent(input->QmatrixFile);
     if(content!='\0')
       ParseMatrix(content, strlen (content));
     else


Index: llvm-test/MultiSource/Applications/JM/lencod/q_offsets.c
diff -u llvm-test/MultiSource/Applications/JM/lencod/q_offsets.c:1.1 llvm-test/MultiSource/Applications/JM/lencod/q_offsets.c:1.2
--- llvm-test/MultiSource/Applications/JM/lencod/q_offsets.c:1.1	Sat Feb 11 04:33:22 2006
+++ llvm-test/MultiSource/Applications/JM/lencod/q_offsets.c	Wed Feb 15 01:38:36 2006
@@ -14,7 +14,7 @@
 #include "global.h"
 #include "memalloc.h"
 
-extern char *GetConfigFileContent (char *Filename, int error_type);
+extern char *GetConfigFileContent (char *Filename);
 
 #define MAX_ITEMS_TO_PARSE  1000
 
@@ -339,7 +339,7 @@
   {
     printf ("Parsing Quantization Offset Matrix file %s ",
       input->QOffsetMatrixFile);
-    content = GetConfigFileContent (input->QOffsetMatrixFile, 0);
+    content = GetConfigFileContent (input->QOffsetMatrixFile);
     if (content != '\0')
       ParseQOffsetMatrix (content, strlen (content));
     else






More information about the llvm-commits mailing list