aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@4ff67af0-8c30-449e-8e8b-ad334ec8d88c>2012-03-11 20:57:47 +0000
committerthakis@chromium.org <thakis@chromium.org@4ff67af0-8c30-449e-8e8b-ad334ec8d88c>2012-03-11 20:57:47 +0000
commit3c5fb45a0ef38ca08793c28dad3cf5be29b25f7f (patch)
tree0c8e0fa8f72beb62a22d2b4a30177d540a8bc9e6
parent25d4c66bfbac64422dcc52adf9d4766d0850b1e1 (diff)
downloadpatched-yasm-3c5fb45a0ef38ca08793c28dad3cf5be29b25f7f.tar.gz
yasm: Fix a compile error introduced by my last commit.
(Upstream at https://github.com/yasm/yasm/pull/63) TBR=fischman Review URL: https://chromiumcodereview.appspot.com/9669043 git-svn-id: http://src.chromium.org/svn/trunk/deps/third_party/yasm/patched-yasm@126079 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
-rw-r--r--modules/objfmts/macho/macho-objfmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/objfmts/macho/macho-objfmt.c b/modules/objfmts/macho/macho-objfmt.c
index 82858e9..96b17c4 100644
--- a/modules/objfmts/macho/macho-objfmt.c
+++ b/modules/objfmts/macho/macho-objfmt.c
@@ -1499,7 +1499,7 @@ macho_objfmt_section_switch(yasm_object *object, yasm_valparamhead *valparams,
msd->flags = flags;
yasm_section_set_align(retval, align, line);
} else if (flags_override) {
- // align is the only value used from overrides.
+ /* align is the only value used from overrides. */
if (yasm_section_get_align(retval) != align) {
yasm_warn_set(YASM_WARN_GENERAL,
N_("section flags ignored on section redeclaration"));