diff options
author | eivind <eivind@FreeBSD.org> | 1999-12-20 17:50:24 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1999-12-20 17:50:24 +0000 |
commit | 9f1bea1125b3b0a8858d4c8316d5fe58e856cf37 (patch) | |
tree | 84abc4a1bdc4407b8b6406102df0af93993e83ce /sys | |
parent | c243ab1306be7ec071bb9198d9a7691444f6355e (diff) | |
download | FreeBSD-src-9f1bea1125b3b0a8858d4c8316d5fe58e856cf37.zip FreeBSD-src-9f1bea1125b3b0a8858d4c8316d5fe58e856cf37.tar.gz |
Incorrect NULL -> 0
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ppbus/ppb_msq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ppbus/ppb_msq.c b/sys/dev/ppbus/ppb_msq.c index d5b729a..a98b254 100644 --- a/sys/dev/ppbus/ppb_msq.c +++ b/sys/dev/ppbus/ppb_msq.c @@ -154,14 +154,14 @@ ppb_MS_loop(struct ppb_device *dev, struct ppb_microseq *prolog, int iter, int *ret) { struct ppb_microseq loop_microseq[] = { - MS_CALL(NULL), /* execute prolog */ + MS_CALL(0), /* execute prolog */ MS_SET(MS_UNKNOWN), /* set size of transfer */ /* loop: */ - MS_CALL(NULL), /* execute body */ + MS_CALL(0), /* execute body */ MS_DBRA(-1 /* loop: */), - MS_CALL(NULL), /* execute epilog */ + MS_CALL(0), /* execute epilog */ MS_RET(0) }; |