From: solar Date: Thu, 30 Dec 2010 22:46:02 +0000 (+0000) Subject: Language. X-Git-Url: https://git.gag.com/?p=fw%2Fpdclib;a=commitdiff_plain;h=9a8147fc5ce995313474f4f565d69a545cd56862 Language. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@509 546481bc-9713-0410-bf18-d3337bbf4a3e --- diff --git a/platform/example/functions/_PDCLIB/fillbuffer.c b/platform/example/functions/_PDCLIB/fillbuffer.c index a5520a3..1d45025 100644 --- a/platform/example/functions/_PDCLIB/fillbuffer.c +++ b/platform/example/functions/_PDCLIB/fillbuffer.c @@ -52,7 +52,7 @@ int _PDCLIB_fillbuffer( struct _PDCLIB_file_t * stream ) _PDCLIB_errno = _PDCLIB_ERROR; break; default: - /* This should probably be something like EUNKNOWN. */ + /* This should be something like EUNKNOWN. */ _PDCLIB_errno = _PDCLIB_ERROR; break; } diff --git a/platform/example/functions/_PDCLIB/seek.c b/platform/example/functions/_PDCLIB/seek.c index b28de73..b3e1830 100644 --- a/platform/example/functions/_PDCLIB/seek.c +++ b/platform/example/functions/_PDCLIB/seek.c @@ -53,7 +53,7 @@ _PDCLIB_int64_t _PDCLIB_seek( struct _PDCLIB_file_t * stream, _PDCLIB_int64_t of _PDCLIB_errno = _PDCLIB_ERROR; break; default: - /* This should probably be something like EUNKNOWN. */ + /* This should be something like EUNKNOWN. */ _PDCLIB_errno = _PDCLIB_ERROR; break; } diff --git a/platform/example_cygwin/functions/_PDCLIB/fillbuffer.c b/platform/example_cygwin/functions/_PDCLIB/fillbuffer.c index 293e6c9..29808b2 100644 --- a/platform/example_cygwin/functions/_PDCLIB/fillbuffer.c +++ b/platform/example_cygwin/functions/_PDCLIB/fillbuffer.c @@ -51,7 +51,7 @@ int _PDCLIB_fillbuffer( struct _PDCLIB_file_t * stream ) _PDCLIB_errno = _PDCLIB_ERROR; break; default: - /* This should probably be something like EUNKNOWN. */ + /* This should be something like EUNKNOWN. */ _PDCLIB_errno = _PDCLIB_ERROR; break; } diff --git a/platform/example_cygwin/functions/_PDCLIB/seek.c b/platform/example_cygwin/functions/_PDCLIB/seek.c index bc003ee..c1094f3 100644 --- a/platform/example_cygwin/functions/_PDCLIB/seek.c +++ b/platform/example_cygwin/functions/_PDCLIB/seek.c @@ -50,7 +50,7 @@ _PDCLIB_int64_t _PDCLIB_seek( struct _PDCLIB_file_t * stream, _PDCLIB_int64_t of _PDCLIB_errno = _PDCLIB_ERROR; break; default: - /* This should probably be something like EUNKNOWN. */ + /* This should be something like EUNKNOWN. */ _PDCLIB_errno = _PDCLIB_ERROR; break; }