t* My OpenBSD ports
URI git clone git://git.codevoid.de/mystuff.git
DIR Log
DIR Files
DIR Refs
---
tpatch-lib_utils_mu-str_c (308B)
---
1 $OpenBSD$
2 make this function compile correctly under clang
3 Index: lib/utils/mu-str.c
4 --- lib/utils/mu-str.c.orig
5 +++ lib/utils/mu-str.c
6 @@ -49,7 +49,7 @@ mu_str_size_s (size_t s)
7 char*
8 mu_str_size (size_t s)
9 {
10 - return g_strdup (mu_str_size_s(s));
11 + return g_format_size_for_display ((goffset)s);
12 }
13
14