Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: put declaration of p2 on new line

...

Code Block
bgColor#FFCCCC
langc
int *p1,;
int *p2;
p1 = foo();
p2 = bar();

if (baz()) {
  return p1;
}
else {
  p2 = p1;
}
return p2;

...