mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:32:44 +00:00 
			
		
		
		
	Kernel: Rename "descriptor" to "description" where appropriate.
Now that FileDescription is called that, variables of that type should not be called "descriptor". This is kinda wordy but we'll get used to it.
This commit is contained in:
		
							parent
							
								
									1c5677032a
								
							
						
					
					
						commit
						c1bbd40b9e
					
				
					 17 changed files with 285 additions and 285 deletions
				
			
		|  | @ -96,9 +96,9 @@ void MasterPTY::close() | |||
|     } | ||||
| } | ||||
| 
 | ||||
| int MasterPTY::ioctl(FileDescription& descriptor, unsigned request, unsigned arg) | ||||
| int MasterPTY::ioctl(FileDescription& description, unsigned request, unsigned arg) | ||||
| { | ||||
|     if (request == TIOCSWINSZ) | ||||
|         return m_slave->ioctl(descriptor, request, arg); | ||||
|         return m_slave->ioctl(description, request, arg); | ||||
|     return -EINVAL; | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling