summaryrefslogtreecommitdiffstats
path: root/tools/idevicedate.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2014-10-07 16:46:58 +0200
committerGravatar Martin Szulecki2014-10-07 16:46:58 +0200
commit82be85a19932a5167d1338b4af7151c8d5d215ac (patch)
tree51771b62def721495d935ef4b4c81818606668a8 /tools/idevicedate.c
parent04ba663cfefe1acd20ce303c1d0357fc6f44da78 (diff)
downloadlibimobiledevice-82be85a19932a5167d1338b4af7151c8d5d215ac.tar.gz
libimobiledevice-82be85a19932a5167d1338b4af7151c8d5d215ac.tar.bz2
idevicedate: Remove space and fix syntax of preprocessor conditionals
Diffstat (limited to 'tools/idevicedate.c')
-rw-r--r--tools/idevicedate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/idevicedate.c b/tools/idevicedate.c
index 1ed8d3f..e14d587 100644
--- a/tools/idevicedate.c
+++ b/tools/idevicedate.c
@@ -24,16 +24,16 @@
24#include <string.h> 24#include <string.h>
25#include <time.h> 25#include <time.h>
26#if HAVE_LANGINFO_CODESET 26#if HAVE_LANGINFO_CODESET
27# include <langinfo.h> 27#include <langinfo.h>
28#endif 28#endif
29 29
30#include <libimobiledevice/libimobiledevice.h> 30#include <libimobiledevice/libimobiledevice.h>
31#include <libimobiledevice/lockdown.h> 31#include <libimobiledevice/lockdown.h>
32 32
33#ifdef _DATE_FMT 33#ifdef _DATE_FMT
34# define DATE_FMT_LANGINFO() nl_langinfo (_DATE_FMT) 34#define DATE_FMT_LANGINFO() nl_langinfo (_DATE_FMT)
35#else 35#else
36# define DATE_FMT_LANGINFO() "" 36#define DATE_FMT_LANGINFO() ""
37#endif 37#endif
38 38
39static void print_usage(int argc, char **argv) 39static void print_usage(int argc, char **argv)