a few oops...

This commit is contained in:
tTh
2023-07-08 12:43:00 +02:00
parent 0f245582d5
commit 2c1687f82b
4 changed files with 21 additions and 12 deletions

View File

@@ -134,7 +134,7 @@ if (notused) {
fprintf(stderr, "notused was %d, must be 0 in %s\n",
notused, __func__); }
if (verbosity > 1) fprintf(stderr, "parsing '%s'\n", str);
if (verbosity > 1) fprintf(stderr, "%s: parsing '%s'\n", __func__, str);
foo = sscanf(str, "%d,%d,%d,%d", &w, &h, &x, &y);
if (4 == foo) {
r->x = x, r->y = y, r->w = w, r->h = h;