From 30cd73d30479b05ae2511a68fb53bae88e7f478e Mon Sep 17 00:00:00 2001 From: mmason Date: Sat, 13 Jan 2007 19:05:07 +0000 Subject: Fix for ioblocktest.exp test (PR 3867) --- tapset/ioblock.stp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tapset/ioblock.stp') diff --git a/tapset/ioblock.stp b/tapset/ioblock.stp index 3590f750..a9be060b 100644 --- a/tapset/ioblock.stp +++ b/tapset/ioblock.stp @@ -49,7 +49,7 @@ end: ; %} /* returns 0 for read, 1 for write */ -function __bio_direction:long(rw:long) +function bio_rw_num:long(rw:long) %{ long rw = (long)THIS->rw; THIS->__retvalue = (rw & (1 << BIO_RW)); @@ -58,7 +58,7 @@ function __bio_direction:long(rw:long) /* returns R for read, W for write */ function bio_rw_str(rw) { - return __bio_direction(rw) == BIO_READ ? "R" : "W" + return bio_rw_num(rw) == BIO_READ ? "R" : "W" } /* returns start sector */ -- cgit