diff options
author | Jacob "Ulysses" Berkman <jacob@helixcode.com> | 2000-10-11 00:57:29 +0800 |
---|---|---|
committer | Jacob Berkman <jberkman@src.gnome.org> | 2000-10-11 00:57:29 +0800 |
commit | 8a246228a94dcd8ae862c17cadaadaecfaae308c (patch) | |
tree | 1875e1addc01486e66579df1979c061b9758e470 /camel/camel-seekable-substream.c | |
parent | f004642c3b8066d272957206c0ad7d8fdb963432 (diff) | |
download | gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.tar gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.tar.gz gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.tar.bz2 gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.tar.lz gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.tar.xz gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.tar.zst gsoc2013-evolution-8a246228a94dcd8ae862c17cadaadaecfaae308c.zip |
teach camel about "its" vs. "it's"
2000-10-10 Jacob "Ulysses" Berkman <jacob@helixcode.com>
* camel-*.c: teach camel about "its" vs. "it's"
svn path=/trunk/; revision=5819
Diffstat (limited to 'camel/camel-seekable-substream.c')
-rw-r--r-- | camel/camel-seekable-substream.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |