Skip to content
This repository was archived by the owner on Feb 27, 2025. It is now read-only.

Commit ecbe26b

Browse files
authored
Merge pull request #1 from kaizoku-oh/master
Fix C++ warning of missing initializer
2 parents e91e5d7 + 0a6ed7b commit ecbe26b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/smf/smf.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
{ \
3838
.entry = _entry, \
3939
.run = _run, \
40-
.exit = _exit \
40+
.exit = _exit, \
41+
.parent = NULL \
4142
}
4243

4344
#endif /* CONFIG_SMF_ANCESTOR_SUPPORT */

0 commit comments

Comments
 (0)