From da09544bb0d9c4d44a84ecff0fbd607ff43c34da Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Mon, 17 Jun 2013 17:27:25 -0500 Subject: [PATCH] Remove accidentally introduced use of fopen "e" --- jq_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jq_test.c b/jq_test.c index f0f77f56..f84cea9f 100644 --- a/jq_test.c +++ b/jq_test.c @@ -13,7 +13,7 @@ int jq_testsuite(int argc, char* argv[]) { FILE *testdata = stdin; jv_test(); if (argc > 2) { - testdata = fopen(argv[2], "re"); + testdata = fopen(argv[2], "r"); if (!testdata) { perror("fopen"); exit(1);