/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugin-helpers/mandos-client-iprouteadddel.c

  • Committer: Teddy Hogeborn
  • Date: 2021-02-03 08:40:41 UTC
  • Revision ID: teddy@recompile.se-20210203084041-kfmyueudtc2pdhjg
Remove superfluous whitespace

* plugin-helpers/mandos-client-iprouteadddel.c (fprintf_plus): Remove
  a stray space character.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
__attribute__((format (gnu_printf, 2, 3), nonnull))
94
94
int fprintf_plus(FILE *stream, const char *format, ...){
95
95
  va_list ap;
96
 
  va_start (ap, format);
 
96
  va_start(ap, format);
97
97
  
98
98
  fprintf(stream, "Mandos plugin helper %s: ",
99
99
          program_invocation_short_name);