X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=backend%2Fdvi%2Fmdvi-lib%2Ffontsrch.c;h=8ebaa5ca0dd1e2af2aca3c227fd17f1fa9e95b22;hb=9937a6c950dc4416ca049a589a9cffe12091eeb4;hp=99d70ee1f2aacef2faf0bb4f8fd1d00621dd3574;hpb=1af6600934d1f723e5b492b8322e52a1144fb0af;p=evince.git diff --git a/backend/dvi/mdvi-lib/fontsrch.c b/backend/dvi/mdvi-lib/fontsrch.c index 99d70ee1..8ebaa5ca 100644 --- a/backend/dvi/mdvi-lib/fontsrch.c +++ b/backend/dvi/mdvi-lib/fontsrch.c @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* @@ -255,8 +255,8 @@ again: } if(kid < MAX_CLASS - 1 && !STREQ(name, _mdvi_fallback_font)) { - warning("font `%s' at %dx%d not found, trying `%s' instead\n", - name, hdpi, vdpi, _mdvi_fallback_font); + mdvi_warning("font `%s' at %dx%d not found, trying `%s' instead\n", + name, hdpi, vdpi, _mdvi_fallback_font); name = _mdvi_fallback_font; kid = 0; goto again; @@ -275,8 +275,8 @@ again: } ptr = last->next; } else { - warning("font `%s' not found, trying metric files instead\n", - name); + mdvi_warning("font `%s' not found, trying metric files instead\n", + name); ptr = (DviFontClass *)font_classes[MAX_CLASS-1].head; } @@ -303,8 +303,8 @@ metrics: return filename; } if(!STREQ(name, _mdvi_fallback_font)) { - warning("metric file for `%s' not found, trying `%s' instead\n", - name, _mdvi_fallback_font); + mdvi_warning("metric file for `%s' not found, trying `%s' instead\n", + name, _mdvi_fallback_font); name = _mdvi_fallback_font; ptr = (DviFontClass *)font_classes[MAX_CLASS-1].head; goto metrics;