From 03ccf53b26d3df20abe67379d73a09d4cc692473 Mon Sep 17 00:00:00 2001 From: Xavi Del Campo Date: Sat, 21 Mar 2020 22:56:23 +0100 Subject: [PATCH] Minor change --- include/dynstr.h | 4 ++-- 1 file 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. */ }; /**