| Index: native_client_sdk/src/libraries/nacl_io/mount_node.cc
|
| diff --git a/native_client_sdk/src/libraries/nacl_io/mount_node.cc b/native_client_sdk/src/libraries/nacl_io/mount_node.cc
|
| index 81a5df451072fb64ca756adde70805ec10bd0510..6da86b15025b54e1120abe95712451a98b6df299 100644
|
| --- a/native_client_sdk/src/libraries/nacl_io/mount_node.cc
|
| +++ b/native_client_sdk/src/libraries/nacl_io/mount_node.cc
|
| @@ -17,6 +17,8 @@
|
| #include "nacl_io/osmman.h"
|
| #include "sdk_util/auto_lock.h"
|
|
|
| +namespace nacl_io {
|
| +
|
| static const int USR_ID = 1001;
|
| static const int GRP_ID = 1002;
|
|
|
| @@ -149,3 +151,5 @@ void MountNode::Link() { stat_.st_nlink++; }
|
|
|
| void MountNode::Unlink() { stat_.st_nlink--; }
|
|
|
| +} // namespace nacl_io
|
| +
|
|
|