diff options
author | Martin Ruckert <martin.ruckert@hm.edu> | 2024-09-05 15:20:50 +0000 |
---|---|---|
committer | Martin Ruckert <martin.ruckert@hm.edu> | 2024-09-05 15:20:50 +0000 |
commit | 3f12c846dd108c8d9197493a946f1f78682334bc (patch) | |
tree | 7aec31a64224b6a9473eaed62c7f6830e943c129 /Build/source | |
parent | ab4c9872c09161c755b32d28ab4cdd57ed2e3ea7 (diff) |
TeXprof: fixing undefined constants and unused return values
git-svn-id: svn://tug.org/texlive/trunk@72195 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/web2c/texprofdir/texprof.w | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Build/source/texk/web2c/texprofdir/texprof.w b/Build/source/texk/web2c/texprofdir/texprof.w index a521ae96746..36fe1278b38 100644 --- a/Build/source/texk/web2c/texprofdir/texprof.w +++ b/Build/source/texk/web2c/texprofdir/texprof.w @@ -1502,7 +1502,7 @@ by changing |wterm|, |wterm_ln|, and |wterm_cr| in this section. @<Basic printing procedures@>= #define @[put(F)@] @[fwrite(&((F).d)@],@[sizeof((F).d),1,(F).f)@]@; -#define @[get(F)@] @[(void)fread(&((F).d),sizeof((F).d),1,(F).f)@] +#define @[get(F)@] @[(void)!fread(&((F).d),sizeof((F).d),1,(F).f)@] #define @[pascal_close(F)@] @[fclose((F).f)@] #define @[eof(F)@] @[feof((F).f)@] @@ -32547,8 +32547,6 @@ primitive("pdfcolorstackinit", convert, pdf_colorstack_init_code);@/ case pdf_escape_name_code: print_esc("pdfescapename");@+break; case pdf_escape_hex_code: print_esc("pdfescapehex");@+break; case pdf_unescape_hex_code: print_esc("pdfunescapehex");@+break; - case pdf_creation_date_code: print_esc("pdfcreationdate");@+break; - case pdf_file_mod_date_code: print_esc("pdffilemoddate");@+break; case pdf_match_code: print_esc("pdfmatch");@+break; case pdf_last_match_code: print_esc("pdflastmatch");@+break; case pdf_colorstack_init_code: print_esc("pdfcolorstackinit");@+break; |