Fix indentation of NR.1 example

This commit is contained in:
Jonathan Wakely 2017-04-28 13:31:20 +01:00
parent 94a7a3fd46
commit e3fe0c5b5e

View File

@ -17997,23 +17997,23 @@ This leads to longer programs and more errors caused by uninitialized and wrongl
##### Example, bad
int use(int x)
{
int i;
char c;
double d;
int use(int x)
{
int i;
char c;
double d;
// ... some stuff ...
// ... some stuff ...
if (x < i) {
// ...
i = f(x, d);
}
if (i < x) {
// ...
i = g(x, c);
}
return i;
if (x < i) {
// ...
i = f(x, d);
}
if (i < x) {
// ...
i = g(x, c);
}
return i;
}
The larger the distance between the uninitialized variable and its use, the larger the chance of a bug.