Fix compiler warning (#1952)

This commit is contained in:
Mark Thompson 2024-03-07 10:18:08 -06:00 committed by GitHub
parent 4f3530db5e
commit 908c0e2cd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1867,7 +1867,7 @@ static byte menuselect(byte lines) { // Selection (1 line = 16 items)
// *** S T A C K // *** S T A C K
static void floatstack() { static void floatstack() {
memcpy(ds, &ds[1], (DATASTACKSIZE - 1) * sizeof(double)); memmove(ds, &ds[1], (DATASTACKSIZE - 1) * sizeof(double));
dp--; dp--;
} }