aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiuliano Procida <gprocida@google.com>2024-01-19 14:41:04 +0000
committerGiuliano Procida <gprocida@google.com>2024-02-09 12:54:52 +0000
commit3e7040699ef06d6b24ccd1b55dbbbd30988919ce (patch)
tree286c0282e42406b3988ea4136bd0f01497f51c90
parent1320baa06877f446955199d400c82df920bbe673 (diff)
downloadstg-3e7040699ef06d6b24ccd1b55dbbbd30988919ce.tar.gz
abigail_reader.cc: fix parameter whitespace in SetAttribute
PiperOrigin-RevId: 599818408 Change-Id: Ic8627a355e75b696953fb08c356a6e0a2c1595d6
-rw-r--r--abigail_reader.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/abigail_reader.cc b/abigail_reader.cc
index 69aa738..062f396 100644
--- a/abigail_reader.cc
+++ b/abigail_reader.cc
@@ -118,7 +118,7 @@ std::string GetAttributeOrDie(xmlNodePtr node, const char* name) {
}
// Set an attribute value.
-void SetAttribute(xmlNodePtr node, const char* name, const std::string &value) {
+void SetAttribute(xmlNodePtr node, const char* name, const std::string& value) {
xmlSetProp(node, ToLibxml(name), ToLibxml(value.c_str()));
}