Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Unified Diff: ports/nacl-spawn/nacl_spawn.cc

Issue 1130003002: Fixing NACL_DEBUG=1 for nacl-spawn. (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ports/nacl-spawn/nacl_spawn.cc
diff --git a/ports/nacl-spawn/nacl_spawn.cc b/ports/nacl-spawn/nacl_spawn.cc
index 0ac0e5376e25ca19063e2d79cf68015b9fd4a6b9..d727fae204495f6db2130e4b07b54754d91ec1fd 100644
--- a/ports/nacl-spawn/nacl_spawn.cc
+++ b/ports/nacl-spawn/nacl_spawn.cc
@@ -238,7 +238,7 @@ static bool GetBool(struct PP_Var dict_var, const char* key) {
if (!VarDictionaryHasKey(dict_var, key, &value_var)) {
return -1;
}
- assert(value_var.type == PP_BOOL);
+ assert(value_var.type == PP_VARTYPE_BOOL);
bool value = value_var.value.as_bool;
return value;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698