Skip to content

Since the string from strerror should never be modified, use const.

Philipp Krause requested to merge spth/mutt:master into master

This is just a very minor issue.

mutt contains a calls to strerror where the result is used to initialize a char *. However, according to the strerror specification, the string returned by strerror should never be changed, so I think it would be better to use const char * instead.

Philipp

Merge request reports