diff options
author | ache <ache@FreeBSD.org> | 1996-02-02 22:14:39 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-02-02 22:14:39 +0000 |
commit | d54012cef45a323ecc4cffa07fd30ff64df8f8c3 (patch) | |
tree | ca0911ce3491ecbf1474e68f102fbf1577388d00 /usr.sbin | |
parent | bc4a7990f2433495c81be22ceb47ef367c6bbce3 (diff) | |
download | FreeBSD-src-d54012cef45a323ecc4cffa07fd30ff64df8f8c3.zip FreeBSD-src-d54012cef45a323ecc4cffa07fd30ff64df8f8c3.tar.gz |
Don't mask last track number with end word, better be shure that it is 170
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/cdcontrol/cdcontrol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/cdcontrol/cdcontrol.c b/usr.sbin/cdcontrol/cdcontrol.c index d66933b..ec47ab9 100644 --- a/usr.sbin/cdcontrol/cdcontrol.c +++ b/usr.sbin/cdcontrol/cdcontrol.c @@ -411,7 +411,7 @@ int info (char *arg) printf ("%5d ", toc_buffer[i].track); prtrack (toc_buffer + i, 0); } - printf (" end "); + printf ("%5d ", toc_buffer[n].track); prtrack (toc_buffer + n, 1); return (0); } |