Changeset af4eda50 in mainline


Ignore:
Timestamp:
2008-09-20T08:06:45Z (16 years ago)
Author:
Tim Post <echo@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
94e152a
Parents:
8168eac6
Message:

exec.c: try_access() should not be unsigned, found should be static

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/exec.c

    r8168eac6 raf4eda50  
    4747
    4848/* FIXME: Just have find_command() return an allocated string */
    49 char *found;
     49static char *found;
    5050
    5151static char *find_command(char *);
    52 static unsigned int try_access(const char *);
     52static int try_access(const char *);
    5353
    5454/* work-around for access() */
    55 static unsigned int try_access(const char *f)
     55static int try_access(const char *f)
    5656{
    5757        int fd;
Note: See TracChangeset for help on using the changeset viewer.