0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

error codes

This commit is contained in:
Mathias Stearn 2011-02-28 13:22:42 -05:00
parent 8c6bf1776c
commit cf07d57e5f

View File

@ -82,7 +82,7 @@ namespace mongo {
struct stat stats;
if (stat(path.c_str(), &stats) != 0){
uasserted(13645, str::stream() << "stat() failed for file: " << path << " " << errnoWithDescription());
uasserted(13646, str::stream() << "stat() failed for file: " << path << " " << errnoWithDescription());
}
return stats.st_dev;