diff options
author | Stefano Karapetsas <[email protected]> | 2012-12-18 00:08:23 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-12-18 00:08:23 +0100 |
commit | 8a4349758ebc7b27e1c0077b715d47d2819007db (patch) | |
tree | 70bf725f0b6b9258d5857d990d3166737fd5a3bd | |
parent | 0bca7365d5c1d574d644e4cf316f99801aeaa298 (diff) | |
download | mate-sensors-applet-8a4349758ebc7b27e1c0077b715d47d2819007db.tar.bz2 mate-sensors-applet-8a4349758ebc7b27e1c0077b715d47d2819007db.tar.xz |
Add missing includes
-rw-r--r-- | plugins/hddtemp/hddtemp-plugin.c | 1 | ||||
-rw-r--r-- | sensors-applet/sensors-applet-settings.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/plugins/hddtemp/hddtemp-plugin.c b/plugins/hddtemp/hddtemp-plugin.c index 307b6f1..c7fde43 100644 --- a/plugins/hddtemp/hddtemp-plugin.c +++ b/plugins/hddtemp/hddtemp-plugin.c @@ -36,6 +36,7 @@ #include <arpa/inet.h> #endif +#include <unistd.h> #include "hddtemp-plugin.h" const gchar *plugin_name = "hddtemp"; diff --git a/sensors-applet/sensors-applet-settings.c b/sensors-applet/sensors-applet-settings.c index 6b0d92f..c725673 100644 --- a/sensors-applet/sensors-applet-settings.c +++ b/sensors-applet/sensors-applet-settings.c @@ -20,6 +20,7 @@ #include "config.h" #endif /* HAVE_CONFIG_H */ +#include <string.h> #include <glib.h> #include "sensors-applet.h" #include "sensors-applet-settings.h" |