aboutsummaryrefslogtreecommitdiffstats
path: root/pulse.cc
diff options
context:
space:
mode:
Diffstat (limited to 'pulse.cc')
-rw-r--r--pulse.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/pulse.cc b/pulse.cc
index 324c05d..7f05bf6 100644
--- a/pulse.cc
+++ b/pulse.cc
@@ -82,9 +82,9 @@ static int volume_as_percent(const pa_cvolume* cvol) {
}
static int xstrtol(const char *str, long *out) {
- char *end = NULL;
+ char *end = nullptr;
- if (str == NULL || *str == '\0') return -1;
+ if (str == nullptr || *str == '\0') return -1;
errno = 0;
*out = strtol(str, &end, 10);