diff options
author | Diego Biurrun | 2008-08-20 21:58:05 +0000 |
---|---|---|
committer | Diego Biurrun | 2008-08-20 21:58:05 +0000 |
commit | 3ef6182556f7f8a4044c1d7da1212989e655e6b2 (patch) | |
tree | 77f2ac7ccc2871d7f87fdd602a8c729eb53bac1d /tools | |
parent | 071083b4a5642c56dbe0b0e957fd84b7549dea5c (diff) |
Fix #include path, headers from other directories need to have
the directory name prefixed now.
Originally committed as revision 14868 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tools')
-rw-r--r-- | tools/pktdumper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pktdumper.c b/tools/pktdumper.c index 2d5a3b7218..781a3c24fc 100644 --- a/tools/pktdumper.c +++ b/tools/pktdumper.c @@ -18,13 +18,13 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include <avformat.h> #include <limits.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> +#include "libavformat/avformat.h" #define PKTFILESUFF "_%08"PRId64"_%02d_%010"PRId64"_%06d_%c.bin" |