diff options
author | Guillaume Poirier | 2007-06-17 18:59:28 +0000 |
---|---|---|
committer | Guillaume Poirier | 2007-06-17 18:59:28 +0000 |
commit | efb775777f815f3140f79f58d3f756a3a4831235 (patch) | |
tree | 37b7226a701aae3bd21e2df3c2a709f16f5b02c7 /libavutil | |
parent | 9cafbd6c490624315c5713db9ba960a408d3e73b (diff) |
add a comment to indicate which #endif belong to which #define
Originally committed as revision 9356 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/base64.h | 2 | ||||
-rw-r--r-- | libavutil/softfloat.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/base64.h b/libavutil/base64.h index ff755a4cdf..1ee7014152 100644 --- a/libavutil/base64.h +++ b/libavutil/base64.h @@ -37,4 +37,4 @@ int av_base64_decode(uint8_t * out, const char *in, int out_length); */ char *av_base64_encode(char * buf, int buf_len, uint8_t * src, int len); -#endif +#endif // AVUTIL_BASE64_H diff --git a/libavutil/softfloat.h b/libavutil/softfloat.h index acf29b2ac5..b6e5485745 100644 --- a/libavutil/softfloat.h +++ b/libavutil/softfloat.h @@ -126,4 +126,4 @@ static inline int av_sf2int(SoftFloat v, int frac_bits){ else return v.mant >>(-v.exp); } -#endif +#endif // AVUTIL_SOFTFLOAT_H |