Fix build break

This commit is contained in:
Arun Prakash Jana 2018-12-08 15:50:17 +05:30
parent d8fa9356e0
commit a5755ec855
No known key found for this signature in database
GPG key ID: A75979F35C080412

View file

@ -3578,9 +3578,9 @@ int main(int argc, char *argv[])
if (*copier < '0' || *copier > '7') {
fprintf(stderr, "invalid color code\n");
return 1;
} else
g_ctx[opt].color = *copier - '0';
}
g_ctx[opt].color = *copier - '0';
++copier;
++opt;
}