mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-27 15:44:11 +02:00
Fix build warning.
This commit is contained in:
parent
86e2f3dd81
commit
2db418118b
@ -68,6 +68,7 @@
|
|||||||
<ClInclude Include="bufferedstream.h" />
|
<ClInclude Include="bufferedstream.h" />
|
||||||
<ClInclude Include="consolelogger.h" />
|
<ClInclude Include="consolelogger.h" />
|
||||||
<ClInclude Include="convert.h" />
|
<ClInclude Include="convert.h" />
|
||||||
|
<ClInclude Include="debug.h" />
|
||||||
<ClInclude Include="dynamicobject.h" />
|
<ClInclude Include="dynamicobject.h" />
|
||||||
<ClInclude Include="dictionary.h" />
|
<ClInclude Include="dictionary.h" />
|
||||||
<ClInclude Include="dynamictype.h" />
|
<ClInclude Include="dynamictype.h" />
|
||||||
|
@ -270,6 +270,9 @@
|
|||||||
<ClInclude Include="scriptvariable.h">
|
<ClInclude Include="scriptvariable.h">
|
||||||
<Filter>Headerdateien</Filter>
|
<Filter>Headerdateien</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="debug.h">
|
||||||
|
<Filter>Headerdateien</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Filter Include="Quelldateien">
|
<Filter Include="Quelldateien">
|
||||||
|
@ -44,7 +44,9 @@ inline int icinga_assert_fail(const char *expr, const char *file, int line)
|
|||||||
fprintf(stderr, "%s:%d: assertion failed: %s\n", file, line, expr);
|
fprintf(stderr, "%s:%d: assertion failed: %s\n", file, line, expr);
|
||||||
abort();
|
abort();
|
||||||
|
|
||||||
|
#ifndef __GNUC__
|
||||||
return 0;
|
return 0;
|
||||||
|
#endif /* __GNUC__ */
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* DEBUG_H */
|
#endif /* DEBUG_H */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user