Don't check if unsigned variable is less than zero

This commit is contained in:
Moritz Lipp 2011-10-05 13:49:40 +02:00
parent 8bf7587baf
commit 8d3cc43bbe
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ cc_open(girara_session_t* session, char* input)
path_max = PATH_MAX;
#else
path_max = pathconf(path,_PC_PATH_MAX);
if (path_max <= 0)
if (path_max == 0)
path_max = 4096;
#endif

View file

@ -178,7 +178,7 @@ zathura_document_open(zathura_t* zathura, const char* path, const char* password
path_max = PATH_MAX;
#else
path_max = pathconf(path,_PC_PATH_MAX);
if (path_max <= 0)
if (path_max == 0)
path_max = 4096;
#endif