From: Andre Noll Date: Thu, 27 Dec 2007 14:11:41 +0000 (+0100) Subject: Cosmetics. X-Git-Tag: v0.3.0~32 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=2e26bd6fc7a6b28d6e1a32b1bddb6ced23be0e33 Cosmetics. --- diff --git a/aft.c b/aft.c index 1d6a5070..19e35752 100644 --- a/aft.c +++ b/aft.c @@ -956,7 +956,7 @@ void make_empty_status_items(char *buf) "%s: \n" /* dirname */ "%s: \n" /* basename */ "%s: \n" /* score */ - "%s: \n" /* attributes bitnmap */ + "%s: \n" /* attributes bitmap */ "%s: \n" /* attributes txt */ "%s: \n" /* hash */ "%s: \n" /* image id */ diff --git a/oggdec.c b/oggdec.c index 4c8aae5f..de9e2379 100644 --- a/oggdec.c +++ b/oggdec.c @@ -4,7 +4,7 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file oggdec.c paraslash's ogg vorbis decoder */ +/** \file oggdec.c Paraslash's ogg vorbis decoder. */ #include "para.h" @@ -58,7 +58,8 @@ static size_t cb_read(void *buf, size_t size, size_t nmemb, void *datasource) } /* - * cb_seek -- custom data seeking function + * Custom data seeking function. + * * Since we want the data source to be treated as unseekable at all * times, the provided seek callback always returns -1 (failure). */ @@ -78,8 +79,8 @@ static const ov_callbacks ovc = { .seek_func = cb_seek, .close_func = cb_close, /* - * The tell function need not be provided if - * the data IO abstraction is not seekable + * The tell function need not be provided if the data IO abstraction is + * not seekable */ .tell_func = NULL };