From: falcovorbis <fal...@us...> - 2023-03-13 03:44:08
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, warnings_fixes has been updated via a79f74634c51efe9329f76e9b8b804d436e32cc5 (commit) from 6b831840851c0d8c5a60f6c1e8134cc5fbc6d44b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a79f74634c51efe9329f76e9b8b804d436e32cc5 Author: falco <gyr...@gm...> Date: Sun Mar 12 23:43:41 2023 -0400 Fixed an uninitialized variable warning in GCC4.7 ----------------------------------------------------------------------- Summary of changes: addons/libnavi/navi_ide.c | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/libnavi/navi_ide.c b/addons/libnavi/navi_ide.c index 6fcd2ad..f5bf6ec 100644 --- a/addons/libnavi/navi_ide.c +++ b/addons/libnavi/navi_ide.c @@ -33,6 +33,7 @@ static void ide_outp(int port, uint16 value, int size) { break; default: assert(0); + return; } //printf("ide_outp %02x -> %04x(%08x)\n", value, port, addr); hooks/post-receive -- A pseudo Operating System for the Dreamcast. |