1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Removed some more compiler warnings.

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15142 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2006-09-22 09:02:51 +00:00
parent d6e18a9266
commit 502d1aaab7
27 changed files with 84 additions and 79 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: unistd_execvp.c,v 1.5 2006-08-02 14:44:01 obarthel Exp $
* $Id: unistd_execvp.c,v 1.6 2006-09-22 09:02:51 obarthel Exp $
*
* :ts=4
*
@ -161,7 +161,7 @@ execvp(const char *command,char * const argv[])
while((search_prefix = local_strsep(&path,path_delimiter)) != NULL)
{
if((*search_prefix) == '\0')
search_prefix = ".";
search_prefix = (char *)".";
search_prefix_len = strlen(search_prefix);