Incorrect NULL -> 0

This commit is contained in:
Eivind Eklund 1999-12-20 17:50:24 +00:00
parent b271db7f20
commit 6852838006
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54903

View File

@ -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)
};