Changeset e2f13430 in rtems
- Timestamp:
- Feb 2, 2019, 4:19:59 AM (2 weeks ago)
- Branches:
- master
- Children:
- b08278e
- Parents:
- 2d8a9c79
- git-author:
- Chris Johns <chrisj@…> (02/02/19 04:19:59)
- git-committer:
- Chris Johns <chrisj@…> (02/08/19 23:06:33)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libdl/dlfcn.c
r2d8a9c79 re2f13430 130 130 { 131 131 static char msg[64]; 132 rtems_rtl_get_error (msg, sizeof (msg)); 132 int eno; 133 eno = rtems_rtl_get_error (msg, sizeof (msg)); 134 if (eno == 0) 135 return NULL; 133 136 return msg; 134 137 }
Note: See TracChangeset
for help on using the changeset viewer.