Skip to content

Commit

Permalink
Code clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Aug 4, 2023
1 parent 9b7b001 commit 6add03d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@ AC_PREREQ([2.71])

AC_INIT(
[libscca],
[20230716],
[20230804],
[joachim.metz@gmail.com])

AC_CONFIG_SRCDIR(
Expand Down
10 changes: 5 additions & 5 deletions libscca/libscca_file.c
Expand Up @@ -623,11 +623,11 @@ int libscca_file_open_file_io_handle(
int access_flags,
libcerror_error_t **error )
{
libscca_internal_file_t *internal_file = NULL;
static char *function = "libscca_file_open_file_io_handle";
int bfio_access_flags = 0;
int file_io_handle_is_open = 0;
int file_io_handle_opened_in_library = 0;
libscca_internal_file_t *internal_file = NULL;
static char *function = "libscca_file_open_file_io_handle";
uint8_t file_io_handle_opened_in_library = 0;
int bfio_access_flags = 0;
int file_io_handle_is_open = 0;

if( file == NULL )
{
Expand Down

0 comments on commit 6add03d

Please sign in to comment.