diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-17 22:24:01 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-17 22:24:01 +0900 |
commit | dd46b9bdeae872ed7682913c898931f1aa6d3d42 (patch) | |
tree | 83a29165f950f0f51ef67b342d5a79a0417643c9 /kscd/libwm/scsi.c | |
parent | cc7a56e1bd1694b2d37ecd46691037f02381d6d3 (diff) | |
download | tdemultimedia-dd46b9bdeae872ed7682913c898931f1aa6d3d42.tar.gz tdemultimedia-dd46b9bdeae872ed7682913c898931f1aa6d3d42.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kscd/libwm/scsi.c')
-rw-r--r-- | kscd/libwm/scsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kscd/libwm/scsi.c b/kscd/libwm/scsi.c index d056fe34..37343107 100644 --- a/kscd/libwm/scsi.c +++ b/kscd/libwm/scsi.c @@ -90,7 +90,7 @@ int wm_scsi2_set_volume(struct wm_drive *d, int left, int right); * d Drive structure * buf Buffer for data, both sending and receiving * len Size of buffer - * dir TRUE if the command expects data to be returned in the buffer. + * dir true if the command expects data to be returned in the buffer. * a0- CDB bytes. Either 6, 10, or 12 of them, depending on the command. */ /*VARARGS4*/ |