Commit 8d4b1eca authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Spell __FreeBSD_version correctly

parent 9f281a25
......@@ -191,7 +191,7 @@ static struct cli_proto debug_cmds[] = {
* XXX: Think more about which order we start things
*/
#if defined(__FreeBSD__) && __FreeBSD__version >= 1000000
#if defined(__FreeBSD__) && __FreeBSD_version >= 1000000
static void
child_malloc_fail(void *p, const char *s)
{
......@@ -208,7 +208,7 @@ child_main(void)
setbuf(stdout, NULL);
setbuf(stderr, NULL);
printf("Child starts\n");
#if defined(__FreeBSD__) && __FreeBSD__version >= 1000000
#if defined(__FreeBSD__) && __FreeBSD_version >= 1000000
malloc_message = child_malloc_fail;
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment