Removed non-API demo programs from Makefile.am and

silenced compiler warnings of remaining demo programs.
This commit is contained in:
2009-08-06 11:26:38 +02:00
parent 67ac2b9b70
commit bbbe89166d
3 changed files with 34 additions and 24 deletions

View File

@ -15,7 +15,7 @@ print_permissions(mode_t mode)
{
char perm[10];
//TODO suid, sticky...
/* TODO suid, sticky... */
perm[9] = '\0';
perm[8] = mode & S_IXOTH ? 'x' : '-';