diff options
author | Eric Wong <normalperson@yhbt.net> | 2005-11-19 10:52:47 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2005-11-19 10:52:47 +0000 |
commit | f8597ccf257eb925db508cfc37a494e2b1397e64 (patch) | |
tree | 0bafdb0be022427f1d84dcae2e10f5e70f84c3d8 /src/conf.c | |
parent | e8a54efe414d9d25b71cef910b15935bea8c530e (diff) | |
download | mpd-f8597ccf257eb925db508cfc37a494e2b1397e64.tar.gz mpd-f8597ccf257eb925db508cfc37a494e2b1397e64.tar.xz mpd-f8597ccf257eb925db508cfc37a494e2b1397e64.zip |
remove C++ style comments
git-svn-id: https://svn.musicpd.org/mpd/trunk@3689 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.c b/src/conf.c index 53c2370f3..0fd3dda95 100644 --- a/src/conf.c +++ b/src/conf.c @@ -384,7 +384,7 @@ ConfigParam * parseConfigFilePath(char * name, int force) { param->value, param->line); exit(EXIT_FAILURE); } - // Parse ~ in path + /* Parse ~ in path */ else if(path[0] == '~') { struct passwd * pwd = NULL; char * newPath; |