diff options
-rw-r--r-- | arch/powerpc/boot/gunzip_util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/boot/gunzip_util.c b/arch/powerpc/boot/gunzip_util.c index 8a97adfac659..df8ab07e9ff4 100644 --- a/arch/powerpc/boot/gunzip_util.c +++ b/arch/powerpc/boot/gunzip_util.c | |||
@@ -142,7 +142,8 @@ void gunzip_exactly(struct gunzip_state *state, void *dst, int dstlen) | |||
142 | 142 | ||
143 | len = gunzip_partial(state, dst, dstlen); | 143 | len = gunzip_partial(state, dst, dstlen); |
144 | if (len < dstlen) | 144 | if (len < dstlen) |
145 | fatal("gunzip_block: ran out of data\n\r"); | 145 | fatal("\n\rgunzip_exactly: ran out of data!" |
146 | " Wanted %d, got %d.\n\r", dstlen, len); | ||
146 | } | 147 | } |
147 | 148 | ||
148 | /** | 149 | /** |