Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/lib/libsa Oops, missed a semicolon.



details:   https://anonhg.NetBSD.org/src/rev/e528982f20e5
branches:  trunk
changeset: 582005:e528982f20e5
user:      junyoung <junyoung%NetBSD.org@localhost>
date:      Mon Jun 13 12:06:36 2005 +0000

description:
Oops, missed a semicolon.

diffstat:

 sys/lib/libsa/cd9660.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r adf090b99678 -r e528982f20e5 sys/lib/libsa/cd9660.c
--- a/sys/lib/libsa/cd9660.c    Mon Jun 13 12:03:01 2005 +0000
+++ b/sys/lib/libsa/cd9660.c    Mon Jun 13 12:06:36 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cd9660.c,v 1.17 2005/06/13 12:03:01 junyoung Exp $     */
+/*     $NetBSD: cd9660.c,v 1.18 2005/06/13 12:06:36 junyoung Exp $     */
 
 /*
  * Copyright (C) 1996 Wolfgang Solfrank.
@@ -143,7 +143,7 @@
        int rc;
 
        /* First find the volume descriptor */
-       buf_size = ISO_DEFAULT_BLOCK_SIZE
+       buf_size = ISO_DEFAULT_BLOCK_SIZE;
        buf = alloc(buf_size);
        vd = buf;
        for (bno = 16;; bno++) {



Home | Main Index | Thread Index | Old Index