summaryrefslogtreecommitdiff
path: root/system_wrappers/source/data_log_c_helpers_unittest.c
diff options
context:
space:
mode:
authorphoglund@webrtc.org <phoglund@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2012-12-03 09:01:21 +0000
committerphoglund@webrtc.org <phoglund@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2012-12-03 09:01:21 +0000
commit3c5fc84109e806cd97be2ce6cd720e1cc949f26d (patch)
tree0699d1cab01681bca6159d150c111aac1e5e3c50 /system_wrappers/source/data_log_c_helpers_unittest.c
parent259cce55dd6b06a0b2e4524cf0464175a2a121c1 (diff)
downloadwebrtc-3c5fc84109e806cd97be2ce6cd720e1cc949f26d.tar.gz
Reformatted data_log.
BUG= Review URL: https://webrtc-codereview.appspot.com/974007 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@3221 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'system_wrappers/source/data_log_c_helpers_unittest.c')
-rw-r--r--system_wrappers/source/data_log_c_helpers_unittest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/system_wrappers/source/data_log_c_helpers_unittest.c b/system_wrappers/source/data_log_c_helpers_unittest.c
index e78a0e35..524bd24e 100644
--- a/system_wrappers/source/data_log_c_helpers_unittest.c
+++ b/system_wrappers/source/data_log_c_helpers_unittest.c
@@ -8,13 +8,13 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#include "system_wrappers/source/data_log_c_helpers_unittest.h"
+#include "webrtc/system_wrappers/source/data_log_c_helpers_unittest.h"
#include <assert.h>
-#include <string.h>
#include <stdlib.h>
+#include <string.h>
-#include "system_wrappers/interface/data_log_c.h"
+#include "webrtc/system_wrappers/interface/data_log_c.h"
enum { kTestArrayLen = 4 };
static const char kTableName[] = "c_wrapper_table";
@@ -31,7 +31,7 @@ int WebRtcDataLogCHelper_TestReturnLog() {
}
int WebRtcDataLogCHelper_TestCombine() {
- const int kOutLen = strlen(kTableName) + 4; /* Room for "_17" + '\0' */
+ const int kOutLen = strlen(kTableName) + 4; // Room for "_17" + '\0'
char* combined_name = malloc(kOutLen * sizeof(char));
char* out_ptr = WebRtcDataLog_Combine(combined_name, kOutLen, kTableName, 17);
int return_code = 0;