diff options
author | Kristian Monsen <kristianm@google.com> | 2014-01-28 11:26:56 -0800 |
---|---|---|
committer | Kristian Monsen <kristianm@google.com> | 2014-01-28 11:28:32 -0800 |
commit | b5a9890f900a5e2b53e91e6d63f3ade23240f90d (patch) | |
tree | 080b5581e8ca5343b0bd0a3f7dac575cc5f941fd /liblog/fake_log_device.c | |
parent | 6ddabb7a1cc3080ae773acb045f69b5e6afee87a (diff) | |
download | core-b5a9890f900a5e2b53e91e6d63f3ade23240f90d.tar.gz core-b5a9890f900a5e2b53e91e6d63f3ade23240f90d.tar.bz2 core-b5a9890f900a5e2b53e91e6d63f3ade23240f90d.zip |
Fixes some warnings
- Implicit decleared function
- Unused variable
Change-Id: Ia701e66682cb6788f0716a2ef7556ed07227f78f
Diffstat (limited to 'liblog/fake_log_device.c')
-rw-r--r-- | liblog/fake_log_device.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/liblog/fake_log_device.c b/liblog/fake_log_device.c index 528361986..be34f017b 100644 --- a/liblog/fake_log_device.c +++ b/liblog/fake_log_device.c @@ -19,6 +19,8 @@ * passed on to the underlying (fake) log device. When not in the * simulator, messages are printed to stderr. */ +#include "fake_log_device.h" + #include <log/logd.h> #include <stdlib.h> |