1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-06 11:38:21 +00:00

better error message (BigBossman)

This commit is contained in:
Charles Kerr 2007-06-18 21:03:10 +00:00
parent 64c21325e8
commit 9791bb6f22

View file

@ -558,7 +558,7 @@ uint8_t * readtorrent( const char * path, size_t * size )
errno = 0;
if( stat( path, &sb ) )
{
tr_err( "Couldn't stat file \"%s\" %s", path, strerror(errno) );
tr_err( "Couldn't get information for file \"%s\" %s", path, strerror(errno) );
return NULL;
}