Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/majn/tgl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVysheng <mail@vysheng.ru>2014-11-19 15:51:27 +0300
committerVysheng <mail@vysheng.ru>2014-11-19 15:51:27 +0300
commitdf870850bf1c2465746a6b0dcf57a85d729d2f47 (patch)
tree4302cc2510a327e3dbc930bb2e18115ab630ae2e /tg-mime-types.c
parenta1a7a5900647a5d0c7c19035699ac15e34ba4da7 (diff)
Fixed bug from prev commit
Diffstat (limited to 'tg-mime-types.c')
-rw-r--r--tg-mime-types.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tg-mime-types.c b/tg-mime-types.c
index 7f7b353..0616c75 100644
--- a/tg-mime-types.c
+++ b/tg-mime-types.c
@@ -15,14 +15,14 @@ static char *end = _section$__DATA__auto_mime_types + getsectbyname("__DATA", "_
extern char binary_auto_mime_types_start[];
extern char binary_auto_mime_types_end[];
static char *start = binary_auto_mime_types_start;
-static char *end = binary_auto_mime_types_start;
+static char *end = binary_auto_mime_types_end;
#else /* gnu ld */
extern char _binary_auto_mime_types_start[];
extern char _binary_auto_mime_types_end[];
static char *start = _binary_auto_mime_types_start;
-static char *end = _binary_auto_mime_types_start;
+static char *end = _binary_auto_mime_types_end;
#endif