]> sigrok.org Git - libsigrokdecode.git/commitdiff
decode.c: Fix typos.
authorUwe Hermann <redacted>
Thu, 27 Jan 2011 19:57:09 +0000 (20:57 +0100)
committerUwe Hermann <redacted>
Thu, 27 Jan 2011 20:10:31 +0000 (21:10 +0100)
decode.c

index c2beab29a6bc619fbb783aae3d2d14db2d3f8858..59cbadcfad66e0466072fb7e9bc05ae8b1eb9ad6 100644 (file)
--- 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)
 {