zero-initialize Wm struct

This commit is contained in:
Akos Horvath 2023-07-05 22:36:55 +02:00
parent 977a8df56b
commit cbd694b42c

View File

@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
int main(int argc, char **arg)
{
Wm wm;
Wm wm = {0};
wm_init(&wm);
return 0;