Merge "Fix misc-macro-parentheses warnings."

This commit is contained in:
Chih-hung Hsieh
2016-05-19 19:03:27 +00:00
committed by Gerrit Code Review
4 changed files with 4 additions and 4 deletions

View File

@@ -33,7 +33,7 @@
#include "IDrmManagerService.h"
#define INVALID_BUFFER_LENGTH -1
#define INVALID_BUFFER_LENGTH (-1)
#define MAX_BINDER_TRANSACTION_SIZE ((1*1024*1024)-(4096*2))
using namespace android;

View File

@@ -30,7 +30,7 @@
using namespace android;
#define FAILURE -1
#define FAILURE (-1)
String8 ReadWriteUtils::readBytes(const String8& filePath) {
FILE* file = NULL;

View File

@@ -33,7 +33,7 @@
#include "DrmManager.h"
#include "ReadWriteUtils.h"
#define DECRYPT_FILE_ERROR -1
#define DECRYPT_FILE_ERROR (-1)
using namespace android;

View File

@@ -28,7 +28,7 @@
using namespace android;
#define INVALID_VALUE -1
#define INVALID_VALUE (-1)
Mutex DrmManagerClientImpl::sMutex;
sp<IDrmManagerService> DrmManagerClientImpl::sDrmManagerService;