View | Details | Raw Unified | Return to bug 176961
Collapse All | Expand All

(-)devel/avr-gcc/files/patch-gcc-config-avr-driver-avr.c (+38 lines)
Line 0 Link Here
1
--- gcc/config/avr/driver-avr.c.orig	2013-03-14 16:26:36.000000000 +0100
2
+++ gcc/config/avr/driver-avr.c	2013-03-14 16:28:52.000000000 +0100
3
@@ -55,7 +55,7 @@
4
 avr_device_to_arch (int argc, const char **argv)
5
 {
6
   if (0 == argc)
7
-    return;
8
+    return NULL;
9
 
10
   avr_set_current_device (argv[0]);
11
 
12
@@ -71,7 +71,7 @@
13
   char data_section_start_str[16];
14
 
15
   if (0 == argc)
16
-    return;  
17
+    return NULL;  
18
 
19
   avr_set_current_device (argv[0]);
20
   
21
@@ -93,7 +93,7 @@
22
 avr_device_to_startfiles (int argc, const char **argv)
23
 {
24
   if (0 == argc)
25
-    return;
26
+    return NULL;
27
 
28
   avr_set_current_device (argv[0]);
29
 
30
@@ -106,7 +106,7 @@
31
 avr_device_to_devicelib (int argc, const char **argv)
32
 {
33
   if (0 == argc)
34
-    return;
35
+    return NULL;
36
 
37
   avr_set_current_device (argv[0]);
38

Return to bug 176961