diff options
| author | David S. Miller <[email protected]> | 2011-04-17 00:07:55 -0700 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2011-04-17 00:07:55 -0700 |
| commit | e60c5e14fbfcaa54f430aad80b38763a403b2158 (patch) | |
| tree | 7fe90c96a38eb0caaa058fd81a3b5b83497ad54c /scripts/patch-kernel | |
| parent | dd182574d86e22faaaed37db79e3d54e773f29f7 (diff) | |
atm: he: Fix undefined sequence points.
GCC complains in these queue index operations because we
perform operations of the form:
x = some_operation(++x);
which is undefined. Replace with:
x = some_operation(x + 1);
which is well defined and provides the intended operation.
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'scripts/patch-kernel')
0 files changed, 0 insertions, 0 deletions