diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-08-29 10:47:16 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-08-29 10:47:16 +0200 |
commit | 0bca3748692ae2441be6d0fef2b5677ff2a4f340 (patch) | |
tree | b78fc3ae74ed47c873537ac596848467e14962b4 /filescan-utils.h | |
parent | 1860c197a402f76f960eb2e373daf1259592cb67 (diff) |
Fix: set default value if missing defined var
Change-Id: I93f8546e2cfe7fc11fdf0f956f10429f6c0ad8d0
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'filescan-utils.h')
-rw-r--r-- | filescan-utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/filescan-utils.h b/filescan-utils.h index a97d030..e0c5da1 100644 --- a/filescan-utils.h +++ b/filescan-utils.h @@ -31,6 +31,10 @@ #endif #define STATIC static +#ifndef MAXPATH_LEN + #define MAXPATH_LEN 255 +#endif + // ctl-misc.c typedef enum { CTL_SCAN_FLAT=0, |