Quote the first arg to _IO(). Not quoting it didn't matter because

this file is never used.

Uniformize use of idempotence identifier.
This commit is contained in:
Bruce Evans 1994-09-08 12:26:07 +00:00
parent ab9678ac9d
commit 8aca2c0a98
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2580

View File

@ -34,11 +34,11 @@
* SUCH DAMAGE.
*
* from: @(#)dkio.h 5.2 (Berkeley) 1/18/91
* $Id: dkio.h,v 1.2 1993/10/16 14:39:12 rgrimes Exp $
* $Id: dkio.h,v 1.3 1993/11/07 17:42:51 wollman Exp $
*/
#ifndef _MACHINE_DKIO_H_
#define _MACHINE_DKIO_H_ 1
#define _MACHINE_DKIO_H_
/*
* Structures and definitions for disk io control commands
@ -49,5 +49,6 @@
*/
/* disk io control commands */
#define DKIOCHDR _IO(d, 1) /* next I/O will read/write header */
#endif /* _MACHINE_DKIO_H_ */
#define DKIOCHDR _IO('d', 1) /* next I/O will read/write header */
#endif /* !_MACHINE_DKIO_H_ */