summaryrefslogtreecommitdiff
path: root/usr/src
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src')
-rw-r--r--usr/src/cmd/audio/audioconvert/parse.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr/src/cmd/audio/audioconvert/parse.cc b/usr/src/cmd/audio/audioconvert/parse.cc
index b5901b19f4..0294b77050 100644
--- a/usr/src/cmd/audio/audioconvert/parse.cc
+++ b/usr/src/cmd/audio/audioconvert/parse.cc
@@ -24,8 +24,6 @@
* All rights reserved.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
@@ -173,7 +171,7 @@ parse_format(
// If so, left side is keyword, right side is value.
// If not, entire string is value.
if (cp2 = strchr(cp, '=')) {
- *cp2++ = NULL;
+ *cp2++ = '\0';
key = cp;
val = cp2;