Skip to content

Commit

Permalink
Reduce unneeded visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
dspinellis committed Apr 14, 2020
1 parent 044bb75 commit 8b488f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core-tools/src/dgsh-tee.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ struct sink_info {
};

/* Construct a new sink_info object */
struct sink_info *
static struct sink_info *
new_sink_info(const char *name)
{
struct sink_info *ofp;
Expand Down Expand Up @@ -208,7 +208,7 @@ fd_name(int fd)


/* Construct a new source_info object */
struct source_info *
static struct source_info *
new_source_info(const char *name)
{
struct source_info *ifp;
Expand Down

0 comments on commit 8b488f1

Please sign in to comment.