diff options
| author | Paul Eggert | 2011-04-10 09:44:27 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-10 09:44:27 -0700 |
| commit | b2ded58d7e0eb75f00071036d1c07bbd55313b60 (patch) | |
| tree | 5546bb6d7214033a83d13ce87a15f65595f6ae74 /src/intervals.c | |
| parent | 37f1c9309eb0e6b3bc3dda1ffa7f99410c22355d (diff) | |
| parent | 12020a9e6dcfc2213e8bbb0fec259c1ed1202f30 (diff) | |
| download | emacs-b2ded58d7e0eb75f00071036d1c07bbd55313b60.tar.gz emacs-b2ded58d7e0eb75f00071036d1c07bbd55313b60.zip | |
Fix more problems found by GCC 4.6.0's static checks.
Diffstat (limited to 'src/intervals.c')
| -rw-r--r-- | src/intervals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intervals.c b/src/intervals.c index 729e6810f74..952f826778c 100644 --- a/src/intervals.c +++ b/src/intervals.c | |||
| @@ -777,7 +777,7 @@ update_interval (register INTERVAL i, EMACS_INT pos) | |||
| 777 | i = i->right; /* Move to the right child */ | 777 | i = i->right; /* Move to the right child */ |
| 778 | } | 778 | } |
| 779 | else if (NULL_PARENT (i)) | 779 | else if (NULL_PARENT (i)) |
| 780 | error ("Point %d after end of properties", pos); | 780 | error ("Point %"pEd" after end of properties", pos); |
| 781 | else | 781 | else |
| 782 | i = INTERVAL_PARENT (i); | 782 | i = INTERVAL_PARENT (i); |
| 783 | continue; | 783 | continue; |