commit | 87451d850c895470a122308086069b7c326c914b | [log] [tgz] |
---|---|---|
author | Randolph Chung <randolph@tausq.org> | Tue Jun 23 14:53:26 2009 +0000 |
committer | Kyle McMartin <kyle@mcmartin.ca> | Fri Jul 03 03:34:09 2009 +0000 |
tree | 07f60f7ccd88aa37d5e2029fdc0f48dc63df46ba | |
parent | e957f608f321a97a60d065bccd01949590eef52e [diff] |
parisc: fix mismatched parenthesis in memcpy.c >>>> I think this is what was intended? Note that this patch may affect >>>> profiling. >>> it really should be >>> >>> - if (likely(t1 & (sizeof(unsigned int)-1)) == 0) { >>> + if (likely((t1 & (sizeof(unsigned int)-1)) == 0)) { >>> >>> randolph Reported-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Randolph Chung <tausq@parisc-linux.org> Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>