diff options
author | pfg <pfg@FreeBSD.org> | 2013-08-08 22:07:59 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2013-08-08 22:07:59 +0000 |
commit | f78a72ad6599dcc4dac3c7c3f61d6ad9b9138f6e (patch) | |
tree | 1fbb0dffaa53cff4e4121d73c815128582158aad | |
parent | d9719f74bcc2402e9eb0cd873ad60e6ce8c86c14 (diff) | |
download | FreeBSD-src-f78a72ad6599dcc4dac3c7c3f61d6ad9b9138f6e.zip FreeBSD-src-f78a72ad6599dcc4dac3c7c3f61d6ad9b9138f6e.tar.gz |
Small typo.
MFC after: 3 days
-rw-r--r-- | sys/fs/ext2fs/ext2_hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/ext2fs/ext2_hash.c b/sys/fs/ext2fs/ext2_hash.c index 4d69f64..85849b0 100644 --- a/sys/fs/ext2fs/ext2_hash.c +++ b/sys/fs/ext2fs/ext2_hash.c @@ -73,7 +73,7 @@ /* * FF, GG, and HH are transformations for rounds 1, 2, and 3. - * Rotation is separated from addition to prevent recompuatation + * Rotation is separated from addition to prevent recomputation. */ #define FF(a, b, c, d, x, s) { \ (a) += F ((b), (c), (d)) + (x); \ |