aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/core
diff options
context:
space:
mode:
authorKévin Redon <kredon@sysmocom.de>2019-06-13 18:12:33 +0200
committerKévin Redon <kredon@sysmocom.de>2019-06-13 18:13:34 +0200
commit77021c7bec2e2e647bc4ca145d320064f13d5155 (patch)
treed1f035e2f50e49fd09ddd60344a22341fd4bb6c1 /include/osmocom/core
parent3aef2389802b3b188ba285e8d1eed0e3256937ef (diff)
(minor) fix typo in comments
Diffstat (limited to 'include/osmocom/core')
-rw-r--r--include/osmocom/core/utils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/osmocom/core/utils.h b/include/osmocom/core/utils.h
index 0673444b..601bb565 100644
--- a/include/osmocom/core/utils.h
+++ b/include/osmocom/core/utils.h
@@ -48,7 +48,7 @@ const char *get_value_string_or_null(const struct value_string *vs,
int get_string_value(const struct value_string *vs, const char *str);
char osmo_bcd2char(uint8_t bcd);
-/* only works for numbers in ascci */
+/* only works for numbers in ASCII */
uint8_t osmo_char2bcd(char c);
int osmo_bcd2str(char *dst, size_t dst_size, const uint8_t *bcd, int start_nibble, int end_nibble, bool allow_hex);
@@ -92,7 +92,7 @@ do { \
rem -= ret; \
} while (0)
-/*! Helper macro to terminate when an assertion failes
+/*! Helper macro to terminate when an assertion fails
* \param[in] exp Predicate to verify
* This function will generate a backtrace and terminate the program if
* the predicate evaluates to false (0).
@@ -105,7 +105,7 @@ do { \
/*! duplicate a string using talloc and release its prior content (if any)
* \param[in] ctx Talloc context to use for allocation
* \param[out] dst pointer to string, will be updated with ptr to new string
- * \param[in] newstr String that will be copieed to newly allocated string */
+ * \param[in] newstr String that will be copied to newly allocated string */
static inline void osmo_talloc_replace_string(void *ctx, char **dst, const char *newstr)
{
if (*dst)