mirror of
				https://github.com/prometheus/node_exporter.git
				synced 2025-08-20 18:33:52 -07:00 
			
		
		
		
	Fix build on 32-bit architectures
This commit is contained in:
		
							parent
							
								
									d955d99e7b
								
							
						
					
					
						commit
						e3437dc583
					
				| 
						 | 
				
			
			@ -43,7 +43,7 @@ func (c *filesystemCollector) GetStats() (stats []filesystemStats, err error) {
 | 
			
		|||
		return nil, errors.New("getmntinfo() failed")
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	mnt := (*[1 << 30]C.struct_statfs)(unsafe.Pointer(mntbuf))
 | 
			
		||||
	mnt := (*[1 << 20]C.struct_statfs)(unsafe.Pointer(mntbuf))
 | 
			
		||||
	stats = []filesystemStats{}
 | 
			
		||||
	for i := 0; i < int(count); i++ {
 | 
			
		||||
		mountpoint := C.GoString(&mnt[i].f_mntonname[0])
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue