Skip to content

Commit

Permalink
Remove unnecessary return
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed Apr 5, 2023
1 parent 74f6434 commit ba13fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parallel64/ports/portio.c
Expand Up @@ -42,7 +42,7 @@ uint8_t readport(uint16_t port) {
}

void writeport(uint16_t port, uint8_t value) {
return writeport_cached(port, value);
writeport_cached(port, value);
}
#endif

Expand Down

0 comments on commit ba13fe2

Please sign in to comment.