diff options
author | Karl Berry <karl@freefriends.org> | 2022-01-26 21:54:12 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-01-26 21:54:12 +0000 |
commit | 9f17197f227405d9869844897955dd6ea9156ff8 (patch) | |
tree | bd91bad09d0b9cc1cdae9b3a6a2033b315309d82 /Build | |
parent | 999a7e41cbdcb35ac0b66d0788c043d9c8a6913d (diff) |
avoid duplicate info symbol from .h
git-svn-id: svn://tug.org/texlive/trunk@61752 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/xdvik/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/xdvik/gui/print-log.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/Build/source/texk/xdvik/ChangeLog b/Build/source/texk/xdvik/ChangeLog index 56039658117..f57eb1036c9 100644 --- a/Build/source/texk/xdvik/ChangeLog +++ b/Build/source/texk/xdvik/ChangeLog @@ -1,3 +1,8 @@ +2022-01-26 Karl Berry <karl@freefriends.org> + + * gui/print-log.h (info): don't declare unintended `info' variable + with type. From Evan Miller, tex-k 26 Jan 2022 10:55:35. + 2021-03-14 Karl Berry <karl@freefriends.org> * string-utils.c (shell_escape_string): escape other shell diff --git a/Build/source/texk/xdvik/gui/print-log.h b/Build/source/texk/xdvik/gui/print-log.h index 53855d8e04e..4313a727407 100644 --- a/Build/source/texk/xdvik/gui/print-log.h +++ b/Build/source/texk/xdvik/gui/print-log.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002-2004 Paul Vojta and the xdvik development team + * Copyright (c) 2002-2022 Paul Vojta and the xdvik development team * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to @@ -23,7 +23,7 @@ #ifndef PRINT_LOG_H_ #define PRINT_LOG_H_ -struct save_or_print_info *info; /* forward declaration */ +struct save_or_print_info; /* forward declaration */ /* printlog access functions */ extern void printlog_create(struct save_or_print_info *info, |