add libprivilege-control dependency
[platform/framework/native/appfw.git] / src / app / FApp_AppMessageImpl.cpp
index c5111e9..659ad7f 100644 (file)
@@ -1,5 +1,4 @@
 //
-// Open Service Platform
 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
 //
 // Licensed under the Apache License, Version 2.0 (the License);
@@ -28,7 +27,9 @@
 #include <FBaseSysLog.h>
 #include <FBaseString.h>
 #include <FBaseColIList.h>
+#include <FBaseColIMap.h>
 #include <FBaseColIEnumerator.h>
+#include <FBaseColArrayList.h>
 
 #include <FBase_StringConverter.h>
 
@@ -348,7 +349,7 @@ _AppMessageImpl::AddValueArray(bundle* pBundle, const char* pKey, const IList* p
        const int count = pList->GetCount();
 
        const char** pSa = new (std::nothrow) const char*[count];
-       SysTryReturnResult(NID_APP, pSa != null, E_OUT_OF_MEMORY, "Memory allocation failure with cound %d.", count);
+       SysTryReturnResult(NID_APP, pSa != null, E_OUT_OF_MEMORY, "Memory allocation failure with count %d.", count);
 
        // element is deliverately iterate with GetAt() for IList
        for (i = 0; i < count; i++)