From: Uwe Hermann Date: Thu, 27 Jan 2011 19:57:09 +0000 (+0100) Subject: decode.c: Fix typos. X-Git-Tag: libsigrokdecode-0.1.0~304 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=3a9a7e38cc74b4da07b03fafbc6674a20510d79e;ds=sidebyside decode.c: Fix typos. --- diff --git a/decode.c b/decode.c index c2beab2..59cbadc 100644 --- a/decode.c +++ b/decode.c @@ -99,7 +99,7 @@ GSList *sigrokdecode_list_decoders(void) * * TODO: @param entries. * - * @return LIBSIGROKDECODE_OK upon success, a (negative) error code otherwise. + * @return SIGROKDECODE_OK upon success, a (negative) error code otherwise. * The 'outstr' argument points to a malloc()ed string upon success. */ static int h_str(PyObject *py_res, PyObject *py_func, PyObject *py_mod, @@ -145,7 +145,7 @@ static int h_str(PyObject *py_res, PyObject *py_func, PyObject *py_mod, * * @param name TODO * - * @return LIBSIGROKDECODE_OK upon success, a (negative) error code otherwise. + * @return SIGROKDECODE_OK upon success, a (negative) error code otherwise. */ int sigrokdecode_load_decoder(const char *name, struct sigrokdecode_decoder **dec) @@ -229,7 +229,7 @@ int sigrokdecode_load_decoder(const char *name, * @param outbuf TODO * @param outbuflen TODO * - * @return LIBSIGROKDECODE_OK upon success, a (negative) error code otherwise. + * @return SIGROKDECODE_OK upon success, a (negative) error code otherwise. */ int sigrokdecode_run_decoder(struct sigrokdecode_decoder *dec, uint8_t *inbuf, uint64_t inbuflen, @@ -319,7 +319,7 @@ int sigrokdecode_run_decoder(struct sigrokdecode_decoder *dec, /** * Shutdown libsigrokdecode. * - * @return LIBSIGROKDECODE_OK upon success, a (negative) error code otherwise. + * @return SIGROKDECODE_OK upon success, a (negative) error code otherwise. */ int sigrokdecode_shutdown(void) {