diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2024-10-09 13:33:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-09 13:33:45 -0400 |
commit | 781f9873f20c45155e0dc3548bf47c74ab4a08fb (patch) | |
tree | 73d64f2b28a8742b2471b8549a81b1847f261edf /src/delivery_populate.c | |
parent | 67dc983f124dd16c2e127fc5c9e4854e7bca9078 (diff) | |
parent | 8362f2c6150ec6e41a985764639d3d910e0da08c (diff) | |
download | stasis-781f9873f20c45155e0dc3548bf47c74ab4a08fb.tar.gz |
Merge pull request #59 from jhunkeler/leaks-and-squeaks
Leaks and squeaks
Diffstat (limited to 'src/delivery_populate.c')
-rw-r--r-- | src/delivery_populate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/delivery_populate.c b/src/delivery_populate.c index 02ce257..b37f677 100644 --- a/src/delivery_populate.c +++ b/src/delivery_populate.c @@ -277,7 +277,7 @@ int populate_mission_ini(struct Delivery **ctx, int render_mode) { (*ctx)->_stasis_ini_fp.mission = ini_open(missionfile); ini = (*ctx)->_stasis_ini_fp.mission; if (!ini) { - msg(STASIS_MSG_ERROR | STASIS_MSG_L2, "Failed to read misson configuration: %s, %s\n", missionfile, strerror(errno)); + msg(STASIS_MSG_ERROR | STASIS_MSG_L2, "Failed to read mission configuration: %s, %s\n", missionfile, strerror(errno)); exit(1); } (*ctx)->_stasis_ini_fp.mission_path = strdup(missionfile); |