diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-10-28 23:44:15 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-10-28 23:44:15 +0200 |
commit | 32bdfb274ec20318dd7d45fb62cd6e51323453f7 (patch) | |
tree | 1142386bf9fb2f90738876cc3e572c0be353c868 /src/utils.cpp | |
parent | f0b272d734469552b9747ec3e00a5a3a22811749 (diff) | |
download | dabmux-32bdfb274ec20318dd7d45fb62cd6e51323453f7.tar.gz dabmux-32bdfb274ec20318dd7d45fb62cd6e51323453f7.tar.bz2 dabmux-32bdfb274ec20318dd7d45fb62cd6e51323453f7.zip |
Replace NULL by nullptr
Diffstat (limited to 'src/utils.cpp')
-rw-r--r-- | src/utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils.cpp b/src/utils.cpp index 02fbc3f..c776b0b 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -38,7 +38,7 @@ static int dab_time_millis = 0; void update_dab_time() { if (dab_time_seconds == 0) { - dab_time_seconds = time(NULL); + dab_time_seconds = time(nullptr); } else { dab_time_millis+= 24; if (dab_time_millis >= 1000) { @@ -566,7 +566,7 @@ void printEnsemble(const shared_ptr<dabEnsemble> ensemble) etiLog.log(info, " mode: %u", ensemble->mode); if (ensemble->lto_auto) { - time_t now = time(NULL); + time_t now = time(nullptr); struct tm* ltime = localtime(&now); time_t now2 = timegm(ltime); etiLog.log(info, " lto: %2.1f hours", 0.5 * (now2 - now) / 1800); |