| commit | 44f0f622527aa7b3801dbbe867566d5f5a8c8a29 | [log] [tgz] |
|---|---|---|
| author | Eric Haszlakiewicz <erh+git@nimenees.com> | Wed Feb 15 19:37:04 2012 -0600 |
| committer | Eric Haszlakiewicz <erh+git@nimenees.com> | Wed Feb 15 19:37:04 2012 -0600 |
| tree | 54545d67a57b63815c68740f09f577917e73dc75 | |
| parent | faa535386a0c0a984caa4cc522d0cf70c97bc68f [diff] |
Issue#10: add some const qualifiers so test1 compiles again.
diff --git a/test1.c b/test1.c index 2a4daf0..1ca4db9 100644 --- a/test1.c +++ b/test1.c
@@ -8,7 +8,7 @@ static int sort_fn (const void *j1, const void *j2) { - json_object **jso1, **jso2; + json_object * const *jso1, * const *jso2; int i1, i2; jso1 = j1;