unix/mpconfigport: Typo fix in comment.

This commit is contained in:
Paul Sokolovsky 2015-12-03 01:41:26 +02:00
parent 75feece208
commit 30d0cf4885
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ typedef long mp_int_t; // must be pointer size
typedef unsigned long mp_uint_t; // must be pointer size
#else
// These are definitions for machines where sizeof(int) == sizeof(void*),
// regardless for actual size.
// regardless of actual size.
typedef int mp_int_t; // must be pointer size
typedef unsigned int mp_uint_t; // must be pointer size
#endif