Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/input_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const char * scalpelInputGetId (ScalpelInputReader * const reader)
return reader->id;
}

const char scalpelInputIsOpen (ScalpelInputReader * const reader)
unsigned char scalpelInputIsOpen (ScalpelInputReader * const reader)
{
printVerbose("scalpelInputIsOpen()\n");
return reader->isOpen;
Expand Down
2 changes: 1 addition & 1 deletion src/input_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ int scalpelInputGetError (ScalpelInputReader * const reader);

//non-abstract methods
const char* scalpelInputGetId (ScalpelInputReader * const reader);
const char scalpelInputIsOpen(ScalpelInputReader * const reader);
unsigned char scalpelInputIsOpen(ScalpelInputReader * const reader);


/********************* FILE implementation of ScalpelInputReader **********************/
Expand Down