X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fstrutil.c;h=5ee680e50b1118fab817c07af542c0e03ddc2367;hb=6762401d2b992a7b10585653ab07ccf1a336fe05;hp=56ccaa095bb62898fdc5ac56102ad9b1b7880388;hpb=82b9f3d116ce0c982291a2dfdd15cd8a1c4cc16e;p=libsigrok.git diff --git a/src/strutil.c b/src/strutil.c index 56ccaa09..5ee680e5 100644 --- a/src/strutil.c +++ b/src/strutil.c @@ -595,12 +595,12 @@ SR_API int sr_vsnprintf_ascii(char *buf, size_t buf_size, /** * Convert a sequence of bytes to its textual representation ("hex dump"). * - * Callers should free the allocated GString. See @ref sr_hexdump_free(). + * Callers should free the allocated GString. See sr_hexdump_free(). * * @param[in] data Pointer to the byte sequence to print. * @param[in] len Number of bytes to print. * - * @return #NULL upon error, newly allocated GString pointer otherwise. + * @return NULL upon error, newly allocated GString pointer otherwise. * * @private */ @@ -620,7 +620,7 @@ SR_PRIV GString *sr_hexdump_new(const uint8_t *data, const size_t len) } /** - * Free a hex dump text that was created by @ref sr_hexdump_new(). + * Free a hex dump text that was created by sr_hexdump_new(). * * @param[in] s Pointer to the GString to release. *