summaryrefslogtreecommitdiffstats
path: root/net/base/escape.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/base/escape.cc')
-rw-r--r--net/base/escape.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/base/escape.cc b/net/base/escape.cc
index 05cc2b5..8e6f870 100644
--- a/net/base/escape.cc
+++ b/net/base/escape.cc
@@ -33,7 +33,7 @@ struct Charmap {
return ((map[c >> 5] & (1 << (c & 31))) != 0);
}
- uint32 map[8];
+ uint32_t map[8];
};
// Given text to escape and a Charmap defining which values to escape,