Changeset 253f37f


Ignore:
Timestamp:
Aug 5, 2017, 11:21:53 PM (7 years ago)
Author:
Jason Gross <jasongross9@gmail.com>
Branches:
master
Children:
8a06468
Parents:
4511ac3
git-author:
Jason Gross <jgross@mit.edu> (08/05/17 22:16:26)
git-committer:
Jason Gross <jasongross9@gmail.com> (08/05/17 23:21:53)
Message:
Change int ret to int errnum as per PR review

As per https://github.com/barnowl/barnowl/pull/109#discussion_r131532257
File:
1 edited

Legend:

Unmodified
Added
Removed
  • logging.c

    r4511ac3 r253f37f  
    257257#endif
    258258
    259 static void owl_log_file_error(owl_log_entry *msg, int ret)
     259static void owl_log_file_error(owl_log_entry *msg, int errnum)
    260260{
    261261  owl_log_error("Unable to open file for logging: %s (file %s)",
    262                 g_strerror(ret),
     262                g_strerror(errnum),
    263263                msg->filename);
    264264}
Note: See TracChangeset for help on using the changeset viewer.