Skip to content

Commit

Permalink
Fix compiler warning (#1952)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotherNgineer committed Mar 7, 2024
1 parent 4f3530d commit 908c0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/application/external/calculator/ivt.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1867,7 +1867,7 @@ static byte menuselect(byte lines) { // Selection (1 line = 16 items)
// *** S T A C K

static void floatstack() {
memcpy(ds, &ds[1], (DATASTACKSIZE - 1) * sizeof(double));
memmove(ds, &ds[1], (DATASTACKSIZE - 1) * sizeof(double));
dp--;
}

Expand Down

0 comments on commit 908c0e2

Please sign in to comment.