Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
removed const that mpw complains about
Browse files Browse the repository at this point in the history
  • Loading branch information
pjshumphreys committed Apr 3, 2023
1 parent befd6f6 commit 48daaea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion env/m68kmac/mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -2087,7 +2087,7 @@ pascal void spinCursor() {
}

int main(void) {
const char progName[] = "querycsv";
char progName[] = "querycsv";
char* argv[3];
int val;

Expand Down
2 changes: 1 addition & 1 deletion env/powermac/powermac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1708,7 +1708,7 @@ void exit_mac(int dummy) {
}

int main(void) {
const char progName[] = "querycsv";
char progName[] = "querycsv";
char* argv[3];
int val;

Expand Down

0 comments on commit 48daaea

Please sign in to comment.