diff options
author | 2016-01-14 01:53:29 +0000 | |
---|---|---|
committer | 2016-01-14 01:53:29 +0000 | |
commit | 6831abaac4bb9b04465d052103a2bb2260c706b5 (patch) | |
tree | 32671683be08218a888705c2b6955ab7728cd3fe | |
parent | add brackets to avoid an operator precedence bug (diff) | |
download | wireguard-openbsd-6831abaac4bb9b04465d052103a2bb2260c706b5.tar.xz wireguard-openbsd-6831abaac4bb9b04465d052103a2bb2260c706b5.zip |
fix typo
from Jan Schreiber, ok deraadt@
-rw-r--r-- | gnu/gcc/gcc/config/mt/mt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/gcc/gcc/config/mt/mt.c b/gnu/gcc/gcc/config/mt/mt.c index 44c494ee99e..cef98803e32 100644 --- a/gnu/gcc/gcc/config/mt/mt.c +++ b/gnu/gcc/gcc/config/mt/mt.c @@ -475,7 +475,7 @@ mt_print_operand (FILE * file, rtx x, int code) break; default: - fprintf(file, "Uknown code: %d", GET_CODE (x)); + fprintf(file, "Unknown code: %d", GET_CODE (x)); break; } |