aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorXavi Del Campo <xavi.dcr@tutanota.com>2020-03-21 22:56:23 +0100
committerXavi Del Campo <xavi.dcr@tutanota.com>2020-03-21 22:56:23 +0100
commit03ccf53b26d3df20abe67379d73a09d4cc692473 (patch)
treea909fe81a97a17693b02c785e6a2c928e088e421 /include
parentd4fc339810189a5c4646e83856d4f98d83345499 (diff)
Minor change
Diffstat (limited to 'include')
-rw-r--r--include/dynstr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dynstr.h b/include/dynstr.h
index d685985..66d33c8 100644
--- a/include/dynstr.h
+++ b/include/dynstr.h
@@ -61,8 +61,8 @@
*/
struct dynstr
{
- char *str; /**< Null-terminated string. */
- size_t len; /**< String length, null character not included. */
+ char *str; /**< Null-terminated string. */
+ size_t len; /**< String length, null character not included. */
};
/**