0d3edf9155a8c82a51d9000231843e57676a1403
Fixed uninitialized timeout variables in metadata_server_main() and chunk_server_main() functions by setting default value to -1. **Changes:** - metadata_server_main(): Changed `int timeout;` to `int timeout = -1;` - chunk_server_main(): Changed `int timeout;` to `int timeout = -1;` This ensures the timeout parameter has a defined default value before being passed to init functions, which is important for predictable behavior even though the init functions set the value themselves. All build targets (tinydfs_server.out, example_client.out, tinydfs_test.out) compile and run successfully.
Languages
C
98.4%
Shell
1%
Zig
0.4%
Batchfile
0.2%