Skip to content

Commit

Permalink
Resolve another character warning on x86 & x86_64
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher J. Brody committed Apr 11, 2018
1 parent a29ec26 commit 04141be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/sqlc.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ int sj(const char * j, int tl, char * a)
int ti=0;
int ai=0;
while (ti<tl) {
char c = j[ti];
const uint8_t c = j[ti];
if (c == '\\') {
// XXX TODO TODO TODO TODO TODO
switch(j[ti+1]) {
Expand Down

0 comments on commit 04141be

Please sign in to comment.