1024jp / GzipSwift

Swift package that enables gzip/gunzip Data using zlib
MIT License
533 stars 132 forks source link

Fix misspelled type `uInt`. #59

Closed GetToSet closed 1 year ago

GetToSet commented 1 year ago

This PR fixes the misspelled type uInt:

uint is defined at sys/types.h:

Screenshot 2023-05-07 at 14 01 29

and uInt is defined at zconf.h instead:

Screenshot 2023-05-07 at 14 02 45

Should make no difference since they are both unsigned int, but it would be great to keep the data types consitent.

1024jp commented 1 year ago

LGTM. Thanks!