X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdevices%2Fintq.h;h=7d5054feb6f85a526a6dbb2ad5690fcaef2b3033;hb=bf61815055495cf22d7278d852b652cd2391cb61;hp=2b3edeafea24f51c8c01ec441145ee1bc56d6347;hpb=eb718e3b5a5470b11e58dcc652f79e115272257a;p=pintos-anon diff --git a/src/devices/intq.h b/src/devices/intq.h index 2b3edea..7d5054f 100644 --- a/src/devices/intq.h +++ b/src/devices/intq.h @@ -34,7 +34,7 @@ struct intq int tail; /* Old data is read here. */ }; -void intq_init (struct intq *, const char *); +void intq_init (struct intq *); bool intq_empty (const struct intq *); bool intq_full (const struct intq *); uint8_t intq_getc (struct intq *);