diff options
author | paul <paul> | 2005-04-27 14:44:54 +0200 |
---|---|---|
committer | paul <paul> | 2005-04-27 14:44:54 +0200 |
commit | a7bca0f5d27b9b8e6eb73890003a4f664d849188 (patch) | |
tree | 81f4c85245047c5f17aaf3b5e657148b218ca642 | |
parent | 2005-04-27 Paul Jakma <paul.jakma@sun.com> (diff) | |
download | frr-a7bca0f5d27b9b8e6eb73890003a4f664d849188.tar.xz frr-a7bca0f5d27b9b8e6eb73890003a4f664d849188.zip |
2005-04-27 Paul Jakma <paul.jakma@sun.com>
* memory.h: memtypes is built source, default includes points to
top_builddir, so we should refer to lib/memtypes.h
-rw-r--r-- | lib/ChangeLog | 4 | ||||
-rw-r--r-- | lib/memory.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index 537a705d0..49224cd0f 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -7,7 +7,9 @@ (work_queue_run) retry logic was slightly wrong. cycles.best is 0 initialy, granularity is 1, so update best if cycles >= granularity, not just >. - + * memory.h: memtypes is built source, default includes points to + top_builddir, so we should refer to lib/memtypes.h + 2005-04-26 Andrew J. Schorr <ajschorr@alumni.princeton.edu> * buffer.c (buffer_write): Comment out call to buffer_flush_available. diff --git a/lib/memory.h b/lib/memory.h index ce379e45b..3ec89a97c 100644 --- a/lib/memory.h +++ b/lib/memory.h @@ -33,7 +33,7 @@ struct mlist { const char *name; }; -#include "memtypes.h" +#include "lib/memtypes.h" extern struct mlist mlists[]; |