Skip to content

Commit 07cd129

Browse files
committed
Fixed a compiler warning
1 parent 69b4a07 commit 07cd129

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/functionInfo/functionInfo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ static inline bool functionInfo_getFrom(struct loadedLibInfo* info, const char*
4141
}
4242

4343
struct functionInfo functionInfo_loadHint(const char* functionName, const char* libraryName) {
44-
struct functionInfo toReturn = (struct functionInfo) { 0, 0, 0, false };
44+
struct functionInfo toReturn = (struct functionInfo) { 0, 0, false };
4545

4646
dlMapper_init();
4747
if (libraryName != NULL && functionInfo_getFrom(dlMapper_libInfoForFileName(libraryName), functionName, &toReturn)) {

0 commit comments

Comments
 (0)