From 3371db447bc6e060a653a0853579ee3a2a1389b1 Mon Sep 17 00:00:00 2001 From: Svend Sorensen Date: Wed, 1 Mar 2006 20:10:26 +0000 Subject: [PATCH] More comment cleanups. --- src/tools/cuebreakpoints.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tools/cuebreakpoints.c b/src/tools/cuebreakpoints.c index 52043a0..0b7b4f8 100644 --- a/src/tools/cuebreakpoints.c +++ b/src/tools/cuebreakpoints.c @@ -65,7 +65,7 @@ void print_m_ss_ff (long frame) void print_breakpoint (long b) { - /* do not print zero breakpoints */ + /* Do not print zero breakpoints. */ if (0 != b) { print_m_ss_ff(b); } @@ -81,7 +81,7 @@ void print_breaks (Cd *cd, int gaps) for (i = 1; i <= cd_get_ntrack(cd); i++) { track = cd_get_track(cd, i); /* - * when breakpoint is at: + * When breakpoint is at: * index 0: gap is prepended to track * index 1: gap is appended to previous track */ @@ -98,7 +98,7 @@ void print_breaks (Cd *cd, int gaps) print_breakpoint(b + pg); } - /* if pregap exists, print breakpoints (in split mode) */ + /* If pregap exists, print breakpoints (in split mode). */ if (gaps == SPLIT && 0 < pg) { print_breakpoint(b + pg); }