summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/Makefile.am2
-rw-r--r--mysys/lf_alloc-pin.c2
-rw-r--r--mysys/lf_hash.c3
3 files changed, 4 insertions, 3 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index d5e75d31593..dd7c25e91f4 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -23,7 +23,7 @@ pkginclude_HEADERS = my_dbug.h m_string.h my_sys.h my_list.h my_xml.h \
my_getopt.h sslopt-longopts.h my_dir.h typelib.h \
sslopt-vars.h sslopt-case.h sql_common.h keycache.h \
mysql_time.h mysql/plugin.h $(BUILT_SOURCES)
-noinst_HEADERS = config-win.h config-netware.h lf.h \
+noinst_HEADERS = config-win.h config-netware.h lf.h my_bit.h \
heap.h maria.h myisamchk.h my_bitmap.h my_uctype.h \
myisam.h myisampack.h myisammrg.h ft_global.h\
mysys_err.h my_base.h help_start.h help_end.h \
diff --git a/mysys/lf_alloc-pin.c b/mysys/lf_alloc-pin.c
index 43055766c3e..d0fa29ddaaf 100644
--- a/mysys/lf_alloc-pin.c
+++ b/mysys/lf_alloc-pin.c
@@ -1,4 +1,4 @@
-// TODO multi-pinbox
+#warning TODO multi-pinbox
/* Copyright (C) 2000 MySQL AB
This program is free software; you can redistribute it and/or modify
diff --git a/mysys/lf_hash.c b/mysys/lf_hash.c
index ff0eb8326d5..7e61ef690c6 100644
--- a/mysys/lf_hash.c
+++ b/mysys/lf_hash.c
@@ -85,7 +85,8 @@ retry:
{
if (!cursor->curr)
return 0;
- do { // XXX or goto retry ?
+ do {
+#warning XXX or goto retry ?
link= cursor->curr->link;
cursor->next= PTR(link);
_lf_pin(pins, 0, cursor->next);