Module Name: src
Committed By: christos
Date: Sun Oct 9 14:51:26 UTC 2016
Modified Files:
src/sys/arch/atari/stand/ahdilabel: ahdilabel.c
Log Message:
PR/51540: Henning Petersen: replace , with ;
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/atari/stand/ahdilabel/ahdilabel.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/atari/stand/ahdilabel/ahdilabel.c
diff -u src/sys/arch/atari/stand/ahdilabel/ahdilabel.c:1.10 src/sys/arch/atari/stand/ahdilabel/ahdilabel.c:1.11
--- src/sys/arch/atari/stand/ahdilabel/ahdilabel.c:1.10 Fri Mar 28 09:35:13 2014
+++ src/sys/arch/atari/stand/ahdilabel/ahdilabel.c Sun Oct 9 10:51:26 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: ahdilabel.c,v 1.10 2014/03/28 13:35:13 ozaki-r Exp $ */
+/* $NetBSD: ahdilabel.c,v 1.11 2016/10/09 14:51:26 christos Exp $ */
/*
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -262,7 +262,7 @@ show_parts (struct ahdi_ptable *ptable,
printf ("%5u/%2u/%3u ", cylinder, track, sector);
sector = ptable->parts[i].start +
(ptable->parts[i].size ?
- ptable->parts[i].size - 1 : 0),
+ ptable->parts[i].size - 1 : 0);
cylinder = sector / ptable->secpercyl;
sector -= cylinder * ptable->secpercyl;
track = sector / ptable->nsectors;