From fa2d6e52c209cd5f241ad0ee73dc1b5af665b1ee Mon Sep 17 00:00:00 2001 From: stsp Date: Fri, 16 Oct 2015 10:29:55 +0000 Subject: [PATCH] Oops, committed old version of previous diff with a typo in it: NLL -> NULL --- sys/dev/pci/if_iwm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/pci/if_iwm.c b/sys/dev/pci/if_iwm.c index 3835246c33a..bde385782f6 100644 --- a/sys/dev/pci/if_iwm.c +++ b/sys/dev/pci/if_iwm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_iwm.c,v 1.57 2015/10/16 10:04:56 stsp Exp $ */ +/* $OpenBSD: if_iwm.c,v 1.58 2015/10/16 10:29:55 stsp Exp $ */ /* * Copyright (c) 2014 genua mbh @@ -3408,7 +3408,7 @@ iwm_send_cmd(struct iwm_softc *sc, struct iwm_host_cmd *hcmd) error = EINVAL; goto out; } - m = MCLGETI(NULL, M_DONTWAIT, NLL, totlen); + m = MCLGETI(NULL, M_DONTWAIT, NULL, totlen); if (m == NULL) { printf("%s: could not get fw cmd mbuf (%zd bytes)\n", DEVNAME(sc), totlen); -- 2.20.1