Subj : Improvements to linux dosemu support To : GitLab note in main/sbbs From : Rob Swindell Date : Tue Dec 15 2020 08:07 pm https://gitlab.synchro.net/main/sbbs/-/merge_requests/56#note_1227 This works fine for setting a string to blank/empty, but it's a bit heavy-handed. The more normal/expected way would be: `*gamedir = '\0';` or: `gamedir[0] = '\0';` .