From: solar Date: Thu, 30 Dec 2010 22:46:02 +0000 (+0000) Subject: Language. X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=2af7521205cfba3d516f32a5a666d267dce5898d Language. --- 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; }