Skip to content

Commit

Permalink
Merge pull request #171 from DrTimothyAldenDavis/master
Browse files Browse the repository at this point in the history
printf format
  • Loading branch information
DrTimothyAldenDavis authored Oct 14, 2022
2 parents 10115dc + 9458a5f commit 97510b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GraphBLAS/rename/GB_rename.h
Original file line number Diff line number Diff line change
Expand Up @@ -3828,8 +3828,8 @@
#define GB_LZ4_compress_fast_extState GM_LZ4_compress_fast_extState
#define GB_LZ4_compress_fast_extState_fastReset GM_LZ4_compress_fast_extState_fastReset
#define GB_LZ4_compress_forceExtDict GM_LZ4_compress_forceExtDict
#define GB_LZ4_compressHC GM_LZ4_compressHC
#define GB_LZ4_compress_HC GM_LZ4_compress_HC
#define GB_LZ4_compressHC GM_LZ4_compressHC
#define GB_LZ4_compressHC2 GM_LZ4_compressHC2
#define GB_LZ4_compressHC2_continue GM_LZ4_compressHC2_continue
#define GB_LZ4_compressHC2_limitedOutput GM_LZ4_compressHC2_limitedOutput
Expand Down
4 changes: 2 additions & 2 deletions Source/GB_macrofy_monoid.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ void GB_macrofy_monoid // construct the macros for a monoid
monoid->terminal, monoid->op->ztype->size) ;
fprintf (fp, "#define GB_TERMINAL_CONDITION(cij,z)"
" (memcmp (&(cij), &(z), %d) == 0)\n",
monoid->op->ztype->size) ;
(int) monoid->op->ztype->size) ;
fprintf (fp, "#define GB_IF_TERMINAL_BREAK(cij,z) "
" if (memcmp (&(cij), &(z), %d) == 0) break\n",
monoid->op->ztype->size) ;
(int) monoid->op->ztype->size) ;
}
}

0 comments on commit 97510b5

Please sign in to comment.