From 061a1aacf38af6913e79b37128785fdb2e311f69 Mon Sep 17 00:00:00 2001
From: florian <florian@freepascal.org>
Date: Thu, 9 Apr 2015 20:36:47 +0000
Subject: [PATCH] * named class properly

git-svn-id: trunk@30518 -
---
 compiler/avr/navrcnv.pas | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/avr/navrcnv.pas b/compiler/avr/navrcnv.pas
index 4afaf6bc95..c0dd4f8070 100644
--- a/compiler/avr/navrcnv.pas
+++ b/compiler/avr/navrcnv.pas
@@ -29,7 +29,7 @@ interface
       node,ncnv,ncgcnv,defcmp;
 
     type
-       tarmtypeconvnode = class(tcgtypeconvnode)
+       tavrtypeconvnode = class(tcgtypeconvnode)
          protected
          { procedure second_int_to_int;override; }
          { procedure second_string_to_string;override; }
@@ -55,5 +55,5 @@ interface
 implementation
 
 begin
-  ctypeconvnode:=tarmtypeconvnode;
+  ctypeconvnode:=tavrtypeconvnode;
 end.