rsys

Basic data structures and low-level features
git clone git://git.meso-star.fr/rsys.git
Log | Files | Refs | README | LICENSE

commit 74569aa161fd6d18580f012e413f1024f54d262d
parent 6287efe9a004bfc62cbdb8ebc80ceb53064c0dc1
Author: vaplv <vaplv@free.fr>
Date:   Sun, 26 Jun 2022 20:38:45 +0200

Fix test_str

Diffstat:
Msrc/test_str.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test_str.c b/src/test_str.c @@ -183,7 +183,7 @@ main(int argc, char** argv) CHK(str_append_printf(&str, ":%s", __FILE__) == RES_OK); CHK(!strcmp(str_cget(&str), __FILE__":3737844653:"__FILE__)); chk_vprintf(&str, "You should have received a copy of the %s %s %d", - "GNU", "Lesser General Public License", 3); + "GNU", "General Public License", 3); CHK(!strcmp(str_cget(&str), "You should have received a copy of the " "GNU General Public License 3"));