From 8a246228a94dcd8ae862c17cadaadaecfaae308c Mon Sep 17 00:00:00 2001 From: "Jacob \"Ulysses\" Berkman" Date: Tue, 10 Oct 2000 16:57:29 +0000 Subject: teach camel about "its" vs. "it's" 2000-10-10 Jacob "Ulysses" Berkman * camel-*.c: teach camel about "its" vs. "it's" svn path=/trunk/; revision=5819 --- camel/camel-seekable-substream.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'camel/camel-seekable-substream.c') diff --git a/camel/camel-seekable-substream.c b/camel/camel-seekable-substream.c index d62fc3bba4..9b197f97bd 100644 --- a/camel/camel-seekable-substream.c +++ b/camel/camel-seekable-substream.c @@ -173,7 +173,7 @@ stream_read (CamelStream *stream, char *buffer, unsigned int n) v = camel_stream_read (CAMEL_STREAM (parent), buffer, n); - /* ignore <0 - its an error, let the caller deal */ + /* ignore <0 - it's an error, let the caller deal */ if (v > 0) seekable_stream->position += v; @@ -184,7 +184,7 @@ static int stream_write (CamelStream *stream, const char *buffer, unsigned int n) { /* NOT VALID ON SEEKABLE SUBSTREAM */ - /* Well, its entirely valid, just not implemented */ + /* Well, it's entirely valid, just not implemented */ g_warning ("CamelSeekableSubstream:: seekable substream doesn't " "have a write method yet?\n"); return -1; -- cgit