diff options
author | Tom Lane | 2016-03-24 22:27:28 +0000 |
---|---|---|
committer | Tom Lane | 2016-03-24 22:27:28 +0000 |
commit | d65bea26a867e3bbd053bf87b985b0e113256414 (patch) | |
tree | 8fa168647280f88424cd536b6215ccf0ce469bb3 /src/bin/psql/common.c | |
parent | a376960c8f8ec08783e1c529f36fbeb60236b378 (diff) |
Move psql's print.c and mbprint.c into src/fe_utils.
Just turning the crank ...
Diffstat (limited to 'src/bin/psql/common.c')
-rw-r--r-- | src/bin/psql/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 2b67a439da7..892058e9ac8 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -23,7 +23,7 @@ #include "settings.h" #include "command.h" #include "copy.h" -#include "mbprint.h" +#include "fe_utils/mbprint.h" static bool ExecQueryUsingCursor(const char *query, double *elapsed_msec); |