aboutsummaryrefslogtreecommitdiff
path: root/src/core/transform.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/transform.h')
-rw-r--r--src/core/transform.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/transform.h b/src/core/transform.h
index a6bb937..b480593 100644
--- a/src/core/transform.h
+++ b/src/core/transform.h
@@ -126,7 +126,7 @@ transform_edges(cube_t c, uint8_t t)
126 case TRANS_BLm: 126 case TRANS_BLm:
127 return TRANS_EDGES_MIRRORED(BLm, c); 127 return TRANS_EDGES_MIRRORED(BLm, c);
128 default: 128 default:
129 LOG("transform error, unknown transformation %" PRIu8 "\n", t); 129 LOG("transform error: unknown transformation %" PRIu8 "\n", t);
130 return ZERO_CUBE; 130 return ZERO_CUBE;
131 } 131 }
132} 132}
@@ -353,7 +353,7 @@ applytrans(cube_t cube, const char *buf)
353 t = readtrans(buf); 353 t = readtrans(buf);
354 354
355 if (t == UINT8_ERROR) 355 if (t == UINT8_ERROR)
356 LOG("Unknown transformation '%s'\n", buf); 356 LOG("Unknown transformation: %s\n", buf);
357 357
358 return transform(cube, t); 358 return transform(cube, t);
359} 359}

Generated with cgit - Back to sebastiano.tronto.net