diff options
author | Keith Bostic <keith@wiredtiger.com> | 2014-11-19 18:15:48 -0500 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2014-11-20 07:37:26 -0500 |
commit | d50452ceeacc72daa2cfe7d9075862144b727749 (patch) | |
tree | db6706b212796985dbd4dbfaf0671a8087802a1e /examples | |
parent | 225aa8174db9220e5144ed70961379c1efc16cd3 (diff) | |
download | mongo-d50452ceeacc72daa2cfe7d9075862144b727749.tar.gz |
whitespace
Diffstat (limited to 'examples')
-rw-r--r-- | examples/c/ex_backup.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/c/ex_backup.c b/examples/c/ex_backup.c index afeeedb8345..4b556d5034e 100644 --- a/examples/c/ex_backup.c +++ b/examples/c/ex_backup.c @@ -40,12 +40,12 @@ #include <wiredtiger.h> -static const char *home = "WT_HOME_LOG"; -static const char *home_full = "WT_HOME_LOG_FULL"; -static const char *home_incr = "WT_HOME_LOG_INCR"; +static const char * const home = "WT_HOME_LOG"; +static const char * const home_full = "WT_HOME_LOG_FULL"; +static const char * const home_incr = "WT_HOME_LOG_INCR"; -static const char *full_out = "./backup_full"; -static const char *incr_out = "./backup_incr"; +static const char * const full_out = "./backup_full"; +static const char * const incr_out = "./backup_incr"; static const char * const uri = "table:logtest"; |