Remove extraneous ';' on closing 'extern "C"'

Fixes warning with newer GCCs:

    include/jemalloc/jemalloc.h:229:2: warning: extra ';' [-Wpedantic]
      };
       ^
This commit is contained in:
Dave Rigby 2015-07-16 11:36:00 +01:00
parent 5bd879646c
commit 37fd1115c3

View File

@ -22,7 +22,7 @@ done
cat <<EOF cat <<EOF
#ifdef __cplusplus #ifdef __cplusplus
}; }
#endif #endif
#endif /* JEMALLOC_H_ */ #endif /* JEMALLOC_H_ */
EOF EOF