1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-06 08:15:56 +01:00

removed some C++ style comments

This commit is contained in:
dan
2001-05-10 22:24:35 +00:00
parent 19b49b3fc1
commit 28793346ab
2 changed files with 5 additions and 8 deletions

View File

@@ -120,9 +120,9 @@ int main(int argc, char **argv)
strcat(path, argv[1]);
if ((dict = PLGetProplistWithPath(path)) == NULL)
return 1; // bad domain
return 1; /* bad domain */
if ((value = PLGetDictionaryEntry(dict, key)) == NULL)
return 2; // bad key
return 2; /* bad key */
printf("%s\n", PLGetString(value));
return 0;